Files
jamespong14205/task1/project/003_src/client/pages/SearchCase/PressSearchToStart.js
2025-02-01 02:02:25 +08:00

22 lines
384 B
JavaScript

import { Box } from '@mui/material';
export default () => (
<Box
sx={{
width: '100%',
height: '30vh',
//
display: 'flex',
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
gap: '3rem',
//
fontWeight: 'bold',
fontSize: '1.2rem',
}}
>
<Box>Press Search to start</Box>
</Box>
);