commit working state

This commit is contained in:
2024-04-15 11:38:40 +02:00
parent 89f3f86c54
commit 508258bf0f
33 changed files with 1130 additions and 221 deletions
+16
View File
@@ -0,0 +1,16 @@
import { AuthContext } from "@/providers/providers";
import { ReactNode, useContext } from "react"
type Props = {
children:ReactNode;
}
export default function AdminOnlyComponent(p:Props){
const context = useContext(AuthContext)
return
(<div>
</div>);
}