FERS 1.0.0
The Flexible Extensible Radar Simulator
Loading...
Searching...
No Matches
AssetLibraryView.tsx
Go to the documentation of this file.
1// SPDX-License-Identifier: GPL-2.0-only
2// Copyright (c) 2025-present FERS Contributors (see AUTHORS.md).
3
4import { Box, Typography } from '@mui/material';
5
6export function AssetLibraryView() {
7 return (
8 <Box sx={{ p: 3 }}>
9 <Typography variant="h4">Asset Library</Typography>
10 <Typography>
11 Manage reusable simulation assets like pulses, antennas, and
12 timing sources here.
13 </Typography>
14 </Box>
15 );
16}