feat: simple dashboard with current day tickets

This commit is contained in:
canove
2020-07-29 16:22:05 -03:00
parent 83b23529c5
commit a443c82c71
9 changed files with 364 additions and 16 deletions

View File

@@ -0,0 +1,10 @@
import React from "react";
import Typography from "@material-ui/core/Typography";
export default function Title(props) {
return (
<Typography component="h2" variant="h6" color="primary" gutterBottom>
{props.children}
</Typography>
);
}