import React, {Component} from 'react'; import {withStyles, Typography} from '@material-ui/core'; import {styles} from './PageLayout.styles'; import {LinkableButton} from '../interfaces/overrides'; class Missingno extends Component { render() { const {classes} = this.props; return (
Uh oh! The part of Hyperspace you're looking for isn't here.
Go back to home timeline
) } } export default withStyles(styles)(Missingno);