mirror of
				https://github.com/owncast/owncast.git
				synced 2025-11-01 02:44:31 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			214 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			214 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { ChatMessage } from '../../interfaces/chat-message.model';
 | |
| 
 | |
| interface Props {
 | |
|   message: ChatMessage;
 | |
| }
 | |
| 
 | |
| export default function ChatSystemMessage(props: Props) {
 | |
|   return <div>Component goes here</div>;
 | |
| }
 | 
