Created
April 20, 2018 18:52
-
-
Save leihuagh/3f1eee62bdef7c12089555622a5a6b46 to your computer and use it in GitHub Desktop.
header.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component } from 'react' | |
| import { AppBar, Toolbar, Typography } from 'material-ui' | |
| class Header extends Component { | |
| render() { | |
| return ( | |
| <div> | |
| <AppBar position="static"> | |
| <Toolbar> | |
| <Typography variant="headline" color="inherit"> | |
| Mass Lottery | |
| </Typography> | |
| </Toolbar> | |
| </AppBar> | |
| </div> | |
| ) | |
| } | |
| } | |
| export default Header |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment