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;