mirror of
https://github.com/20kaushik02/spotify-manager-web.git
synced 2025-12-06 06:34:06 +00:00
14 lines
371 B
TypeScript
14 lines
371 B
TypeScript
import React, { useEffect } from "react";
|
|
import styles from "./PageNotFound.module.css";
|
|
import { showWarnToastNotification } from "../../components/ToastNotification";
|
|
|
|
const PageNotFound = () => {
|
|
useEffect(() => {
|
|
showWarnToastNotification("Oops!");
|
|
}, []);
|
|
|
|
return <div className={styles.pnf_wrapper}>Page Not Found</div>;
|
|
};
|
|
|
|
export default PageNotFound;
|