mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-17 11:21:35 +03:00
31 lines
731 B
TypeScript
31 lines
731 B
TypeScript
"use client";
|
|
|
|
import { UUID } from "crypto";
|
|
import { useParams } from "next/navigation";
|
|
|
|
import { BrainManagementTabs } from "./components";
|
|
|
|
const BrainsManagement = (): JSX.Element => {
|
|
const params = useParams();
|
|
|
|
const brainId = params?.brainId as UUID | undefined;
|
|
|
|
if (brainId === undefined) {
|
|
return (
|
|
<div className="flex justify-center mt-5 w-full">
|
|
<div className="bg-blue-100 border border-blue-400 text-blue-700 px-4 py-3 rounded relative max-w-md h-fit">
|
|
<p>Select a brain please</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<main className="flex flex-col w-full pt-20 px-20 mb-10">
|
|
<BrainManagementTabs />
|
|
</main>
|
|
);
|
|
};
|
|
|
|
export default BrainsManagement;
|