import * as React from "react"; import { Box, Typography, Button } from "@mui/material"; import theme from "../../../../../theme"; export interface MWProps { openModal: (num: number) => void } const Quiz: React.FC = ({ openModal }) => { return ( Опросник ); } export default Quiz;