Created the Manage.jsx state

This commit is contained in:
Mathias Wagner 2023-11-13 11:49:56 +01:00
parent 5f0cc13770
commit 6141c2664f
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -0,0 +1,14 @@
import {Navigate} from "react-router-dom";
export const Manage = () => {
if (!localStorage.getItem("token")) {
return <Navigate to="/auth"/>;
}
return (
<>
<p style={{margin: 0}}>manage</p>
</>
);
}