import { faEyeSlash as fasEyeSlash } from "@fortawesome/free-regular-svg-icons"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import React, { FunctionComponent } from "react"; import { Container } from "react-bootstrap"; export const RouterEmptyPath = "/empty-page"; const EmptyPage: FunctionComponent = () => { return (

404

The Request URL No Found

); }; export default EmptyPage;