projeto-hit/frontend/src/components/Title/index.js

11 lines
231 B
JavaScript
Raw Normal View History

import React from "react";
import Typography from "@material-ui/core/Typography";
export default function Title(props) {
return (
<Typography variant="h5" color="primary" gutterBottom>
{props.children}
</Typography>
);
}