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

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

export default NotFound;