import {Box, Button, Typography, useTheme} from "@mui/material"; import CreationCard from "@ui_kit/CreationCard"; import quizCreationImage1 from "../../assets/quiz-creation-1.png"; import quizCreationImage2 from "../../assets/quiz-creation-2.png"; interface HandleNext { handleNext: () => void } export default function StepOne({handleNext}:HandleNext) { const theme = useTheme(); return ( <> ) }