2022-12-09 11:48:15 +00:00
|
|
|
import { CssBaseline, ThemeProvider } from "@mui/material";
|
|
|
|
import CreateQuiz from "./components/CreateQuiz/CreateQuiz";
|
|
|
|
import FirstQuiz from "./components/FirstQuiz";
|
|
|
|
import MyQuizzes from "./components/MyQuizzes";
|
|
|
|
import Navbar from "./components/Navbar/Navbar";
|
|
|
|
import NavbarCreateQuiz from "./components/Navbar/NavbarCreateQuiz";
|
|
|
|
import QuizGallery from "./components/QuizGallery";
|
|
|
|
import lightTheme from "./utils/themes/light";
|
2022-12-03 21:37:21 +00:00
|
|
|
|
|
|
|
function App() {
|
2022-12-09 11:48:15 +00:00
|
|
|
return (
|
|
|
|
<ThemeProvider theme={lightTheme}>
|
|
|
|
<CssBaseline />
|
|
|
|
{/* <Navbar isLoggedIn={true} /> */}
|
|
|
|
{/* <FirstQuiz /> */}
|
|
|
|
{/* <MyQuizzes /> */}
|
|
|
|
<QuizGallery />
|
|
|
|
{/* ______ */}
|
|
|
|
{/* <NavbarCreateQuiz /> */}
|
|
|
|
{/* <CreateQuiz /> */}
|
|
|
|
</ThemeProvider>
|
|
|
|
);
|
2022-12-03 21:37:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default App;
|