import { Typography } from "@material-ui/core"; import React from "react"; interface LabelProps { text: string; } const Label: React.FC = ({ text }) => ( {text} ); export default Label;