Many Changes

This commit is contained in:
2024-05-14 12:49:50 +02:00
parent a01b6bdbc2
commit f6eef1ded3
53 changed files with 636 additions and 579 deletions
@@ -0,0 +1,16 @@
import { AuthContext, AuthProps } from "@/providers/providers";
import { ReactNode, useContext } from "react";
interface Props {
children?: ReactNode;
auth?: AuthProps;
}
export default function SomeServerSubComponent(props:Props){
let { test, auth } = useContext(AuthContext);
return (
<span>{test}{JSON.stringify(auth)}</span>
);
}