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

24 行
602 B

  1. import LaserPrintSearch from "@/components/LaserPrint/LaserPrintSearch";
  2. import { Stack, Typography } from "@mui/material";
  3. import { Metadata } from "next";
  4. import React from "react";
  5. export const metadata: Metadata = {
  6. title: "檸檬機(激光機)",
  7. };
  8. const LaserPrintPage: React.FC = () => {
  9. return (
  10. <>
  11. <Stack direction="row" justifyContent="space-between" flexWrap="wrap" rowGap={2}>
  12. <Typography variant="h4" marginInlineEnd={2}>
  13. 檸檬機(激光機)
  14. </Typography>
  15. </Stack>
  16. <LaserPrintSearch />
  17. </>
  18. );
  19. };
  20. export default LaserPrintPage;