import * as React from 'react'; import { Typography } from '@mui/material'; export const Title: FCWithChildren<{ text: string }> = ({ text }) => ( {text} );