mirror of
https://github.com/owncast/owncast.git
synced 2024-11-24 05:38:58 +03:00
10 lines
214 B
React
10 lines
214 B
React
|
import { ChatMessage } from '../../interfaces/chat-message.model';
|
||
|
|
||
|
interface Props {
|
||
|
message: ChatMessage;
|
||
|
}
|
||
|
|
||
|
export default function ChatSocialMessage(props: Props) {
|
||
|
return <div>Component goes here</div>;
|
||
|
}
|