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