import { Box, Typography } from "@mui/material"; interface Props { header: string; text: string; image: any; } export default function CreationCard({ header, text, image }: Props) { return ( {header} {text} quiz creation ); }