/** * Created by MeePwn * https://github.com/maybewaityou * * description: * */ import { log, NetworkClient } from 'mario-utilities'; import React from 'react'; import { matchPath } from 'react-router'; import { context } from '@context'; export default class extends React.PureComponent { public handleClick = () => { this.props.history.goForward(); } public render() { return (
Home
); } }