mirror of
https://github.com/owncast/owncast.git
synced 2024-11-29 11:39:08 +03:00
9 lines
218 B
TypeScript
9 lines
218 B
TypeScript
import { ChatMessage } from '../../interfaces/chat-message.model';
|
|
|
|
interface Props {
|
|
messages: ChatMessage[];
|
|
}
|
|
|
|
export default function ChatContainer(props: Props) {
|
|
return <div>Chat container goes here</div>;
|
|
}
|