import React, { useEffect } from "react"; import styles from "./PageNotFound.module.css"; import { showWarnToastNotification } from "../../components/ToastNotification"; const PageNotFound = () => { useEffect(() => { showWarnToastNotification("Oops!"); }, []); return
Page Not Found
; }; export default PageNotFound;