mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-21 02:11:35 +03:00
80be40ad34
* feat: remove react-mentions * feat: add chat header * feat: remove v2/chat * feat: add fature flag * feat: add new chat UI * feat: add prompt and brain name to messages
10 lines
337 B
TypeScript
10 lines
337 B
TypeScript
import { ChatInput } from "../ChatInput";
|
|
|
|
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>
|
|
);
|
|
};
|