mirror of
				https://github.com/owncast/owncast.git
				synced 2025-11-04 13:27:21 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			317 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			317 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/* eslint-disable @typescript-eslint/no-unused-vars */
 | 
						|
/* eslint-disable react/no-unused-prop-types */
 | 
						|
import { ChatMessage } from '../../interfaces/chat-message.model';
 | 
						|
 | 
						|
interface Props {
 | 
						|
  message: ChatMessage;
 | 
						|
}
 | 
						|
 | 
						|
export default function ChatSystemMessage(props: Props) {
 | 
						|
  return <div>Component goes here</div>;
 | 
						|
}
 |