quivr/frontend/app/brains-management/[brainId]/page.tsx

12 lines
226 B
TypeScript
Raw Normal View History

"use client";
const BrainsManagement = (): JSX.Element => {
return (
<main className="flex flex-col w-full pt-10" data-testid="brain-page">
<p>Coming soon</p>
</main>
);
};
export default BrainsManagement;