8 lines
126 B
TypeScript
8 lines
126 B
TypeScript
import { FC } from "react";
|
|
|
|
interface Props {}
|
|
|
|
export const PromptbarSettings: FC<Props> = () => {
|
|
return <div></div>;
|
|
};
|