11 lines
231 B
JavaScript
11 lines
231 B
JavaScript
|
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>
|
||
|
);
|
||
|
}
|