Skip to content
Snippets Groups Projects
NotFound.js 186 B
Newer Older
import React from 'react';

const NotFound = () => {
    return (
        <div>
            This is a fallback err page, no page found!
        </div>
    );
};

export default NotFound;