import { List, Paper, Typography } from "@mui/material"; import React from "react"; interface IProps { children: React.ReactNode; title: string; } export const GameOptionsPage = (props: IProps): React.ReactElement => { return ( {props.title} {props.children} ); };