Remove sample notifications (#133)

This commit is contained in:
Jonathan Zernik 2020-07-23 17:30:39 -07:00 committed by GitHub
parent 5904ed9a11
commit 1ddd70ab92
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -36,27 +36,7 @@ import {
} from "../../context/LayoutContext";
import { useUserDispatch, signOut } from "../../context/UserContext";
const notifications = [
{ id: 0, color: "warning", message: "Check out this awesome ticket" },
{
id: 1,
color: "success",
type: "info",
message: "What is the best way to get ...",
},
{
id: 2,
color: "secondary",
type: "notification",
message: "This is just a simple notification",
},
{
id: 3,
color: "primary",
type: "e-commerce",
message: "12 new orders has arrived today",
},
];
const notifications = [];
export default function Header(props) {
var classes = useStyles();