FERS 1.0.0
The Flexible Extensible Radar Simulator
Loading...
Searching...
No Matches
ResultsView.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 ResultsView() {
7 return (
8 <Box sx={{ p: 3 }}>
9 <Typography variant="h4">Results Analysis</Typography>
10 <Typography>
11 Visualize and analyze FERS simulation output data.
12 </Typography>
13 </Box>
14 );
15}