2022-01-06 01:26:15 +00:00
|
|
|
import React from "react";
|
|
|
|
import Typography from "@material-ui/core/Typography";
|
|
|
|
|
2022-08-01 19:33:24 +00:00
|
|
|
const Title = ({children}) => {
|
2022-01-06 01:26:15 +00:00
|
|
|
return (
|
|
|
|
<Typography component="h2" variant="h6" color="primary" gutterBottom>
|
2022-08-01 19:33:24 +00:00
|
|
|
{children}
|
2022-01-06 01:26:15 +00:00
|
|
|
</Typography>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default Title;
|