mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-18 16:11:45 +03:00
12 lines
226 B
TypeScript
12 lines
226 B
TypeScript
|
"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;
|