選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

PageDescription.tsx 416B

12345678910111213141516
  1. import { Typography } from '@mui/material';
  2. import { Box } from '@mui/system';
  3. interface PageDescriptionProps {
  4. description: string;
  5. }
  6. const PageDescription: React.FC<PageDescriptionProps> = ({ description }) => {
  7. return (
  8. <Box sx={{ ml: { xs: 2, md: 12 }, my: 3 }}>
  9. <Typography sx={{ fontSize: 20 }}>{description}</Typography>
  10. </Box>
  11. );
  12. };
  13. export default PageDescription;