mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-17 19:32:47 +03:00
8e94f22782
* feat(chat): add brain selection through mention input * feat: detect mention deletion from editor * feat: improve ux * chore: improve dx * feat: update translations * feat: improve mention popover ui * fix: update failing tests * feat: add mentions suggestion popover * feat: update translations * feat: remove add new brain button
10 lines
337 B
TypeScript
10 lines
337 B
TypeScript
import { ChatInput } from "./components";
|
|
|
|
export const ActionsBar = (): JSX.Element => {
|
|
return (
|
|
<div className="flex mt-4 flex-row w-full shadow-md dark:shadow-primary/25 hover:shadow-xl transition-shadow rounded-xl bg-white dark:bg-black border border-black/10 dark:border-white/25 p-6">
|
|
<ChatInput />
|
|
</div>
|
|
);
|
|
};
|