Created
December 21, 2017 16:08
-
-
Save ydatech/98b94b2ae2769e816e342fec848e26bc to your computer and use it in GitHub Desktop.
NotFound page for React JS tutorial on https://learnreact.blogspot.com
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'; | |
| //material-ui components | |
| import Grid from 'material-ui/Grid'; | |
| import Typography from 'material-ui/Typography'; | |
| class NotFound extends Component { | |
| render() { | |
| return ( | |
| <Grid item xs={12} sm={6}> | |
| <Typography align="center" type="display3">Page Not Found!</Typography> | |
| </Grid> | |
| ); | |
| } | |
| } | |
| export default NotFound; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment