mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-17 19:32:47 +03:00
9c8e0aa0e4
* 🗑️ remove date input from fetch_user_id_from_credentials * ♻️ refactor backend utils by splitting it into files * 💡 comments for next actions to update /upload * 🚚 move SupabaseProvider tp libs * 🚚 move useAxios to hooks * ♻️ refacto brain routes * 🚨 update lintermfor paths * ✨ new brain context provider * ✨ new brain component in navbar * 🚨 fix linter and async * 🇸🇪 add feature flag for multiple-brains
17 lines
365 B
TypeScript
17 lines
365 B
TypeScript
"use client";
|
|
|
|
import { BrainContext } from "./hooks/useBrainContext";
|
|
import { useBrainState } from "./hooks/useBrainState";
|
|
|
|
export const BrainProvider = ({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}): JSX.Element => {
|
|
const brainState = useBrainState();
|
|
|
|
return (
|
|
<BrainContext.Provider value={brainState}>{children}</BrainContext.Provider>
|
|
);
|
|
};
|