mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
10 lines
218 B
TypeScript
10 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>;
|
|
}
|