FPSMS-frontend
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

page.tsx 602 B

1 주 전
1234567891011121314151617181920212223
  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;