import Head from "next/head"; import Link from "next/link"; import { useState } from "react"; import { Button, Stack, Box, CssBaseline, AppBar, Toolbar, Typography, } from "@mui/material"; import "../styles/globals.css"; function MyApp({ Component, pageProps }) { const [username, setUsername] = useState(""); pageProps = { ...pageProps, username, setUsername }; return ( <> ITSC Tool 抢 班 {username && ( )} ); } export default MyApp;