mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 21:28:29 +03:00
6 lines
117 B
TypeScript
6 lines
117 B
TypeScript
|
interface Props {}
|
||
|
|
||
|
export default function ChatTextField(props: Props) {
|
||
|
return <div>Component goes here</div>;
|
||
|
}
|