<ProjectContext.Provider value={{ state, setState }}>
<Toolbar />
<main class="flex flex-row text-center mx-auto text-gray-700 h-[90vh] w-full">
{C()}
</main>
</ProjectContext.Provider>
//child route
const [state, setState] = useContext(AppContext) as AppContextType;
<ProjectContext.Provider value={{ state, setState }}>
<Toolbar />
<main class="flex flex-row text-center mx-auto text-gray-700 h-[90vh] w-full">
{C()}
</main>
</ProjectContext.Provider>
//child route
const [state, setState] = useContext(AppContext) as AppContextType;