mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-21 18:31:44 +03:00
11 lines
248 B
TypeScript
11 lines
248 B
TypeScript
|
import { useUrlBrain } from "@/lib/hooks/useBrainIdFromUrl";
|
||
|
|
||
|
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
|
||
|
export const useBrainManagement = () => {
|
||
|
const { brain } = useUrlBrain();
|
||
|
|
||
|
return {
|
||
|
brain,
|
||
|
};
|
||
|
};
|