Sfoglia il codice sorgente

feat(Header component): add new header component

Helder 6 anni fa
parent
commit
3dd18e6b4f
1 ha cambiato i file con 17 aggiunte e 0 eliminazioni
  1. 17 0
      src/app/components/Header/index.jsx

+ 17 - 0
src/app/components/Header/index.jsx

@@ -0,0 +1,17 @@
+import React, { Component } from 'react';
+import AppBar from "material-ui/AppBar";
+
+
+
+export default class Header extends Component{
+
+    constructor(props){
+        super(props);
+    }
+
+    render(){
+        return(
+                <AppBar title="To-Do App" showMenuIconButton={false} />
+          )
+    }
+}