diff --git a/src/components/CreateQuiz/CardWithImage.tsx b/src/components/CreateQuiz/CardWithImage.tsx new file mode 100644 index 00000000..fb3f83f3 --- /dev/null +++ b/src/components/CreateQuiz/CardWithImage.tsx @@ -0,0 +1,39 @@ +import { Box, Typography, useTheme } from "@mui/material"; + + +interface Props { + image: string; + text: string; +} + +export default function CardWithImage({ image, text }: Props) { + const theme = useTheme(); + + return ( + + card + {text} + + ); +} \ No newline at end of file