Skip to content

Instantly share code, notes, and snippets.

@ydatech
Created December 21, 2017 16:08
Show Gist options
  • Select an option

  • Save ydatech/98b94b2ae2769e816e342fec848e26bc to your computer and use it in GitHub Desktop.

Select an option

Save ydatech/98b94b2ae2769e816e342fec848e26bc to your computer and use it in GitHub Desktop.
NotFound page for React JS tutorial on https://learnreact.blogspot.com
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