You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			18 lines
		
	
	
		
			338 B
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			18 lines
		
	
	
		
			338 B
		
	
	
	
		
			TypeScript
		
	
| import React from 'react';
 | |
| 
 | |
| import { SessionSpinner } from './session/SessionSpinner';
 | |
| 
 | |
| export class ConversationLoadingScreen extends React.PureComponent {
 | |
|   constructor(props: any) {
 | |
|     super(props);
 | |
|   }
 | |
| 
 | |
|   public render() {
 | |
|     return (
 | |
|       <div className="conversation-loader">
 | |
|         <SessionSpinner />
 | |
|       </div>
 | |
|     );
 | |
|   }
 | |
| }
 |