llama-gpt/components/Promptbar/PromptbarSettings.tsx

8 lines
126 B
TypeScript

import { FC } from "react";
interface Props {}
export const PromptbarSettings: FC<Props> = () => {
return <div></div>;
};