diff --git a/src/states/Manage/Manage.jsx b/src/states/Manage/Manage.jsx new file mode 100644 index 0000000..cf4faa5 --- /dev/null +++ b/src/states/Manage/Manage.jsx @@ -0,0 +1,14 @@ +import {Navigate} from "react-router-dom"; + +export const Manage = () => { + + if (!localStorage.getItem("token")) { + return ; + } + + return ( + <> +

manage

+ + ); +} \ No newline at end of file