/*
 * File: NotFound.jsx
 * Author: insane (luojie@doctorwork.com)
 * Last: insane (luojie@doctorwork.com>) 
 * Date: 2018-04-Fr 02:19:53
 * Copyright 2018 - 2018 © Doctorwork
 */
import React from 'react';
import Empty from './Empty';

const NotFound = () => (
    <React.Fragment>
        <Empty.List text="404" />
    </React.Fragment>
);
export default NotFound;
