owncast/web/components/chat/ChatTextField.tsx

6 lines
117 B
TypeScript
Raw Normal View History

interface Props {}
export default function ChatTextField(props: Props) {
return <div>Component goes here</div>;
}