Skip to content

Instantly share code, notes, and snippets.

@leihuagh
Created April 20, 2018 18:52
Show Gist options
  • Select an option

  • Save leihuagh/3f1eee62bdef7c12089555622a5a6b46 to your computer and use it in GitHub Desktop.

Select an option

Save leihuagh/3f1eee62bdef7c12089555622a5a6b46 to your computer and use it in GitHub Desktop.
header.js
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