mirror of
				https://github.com/mickael-kerjean/filestash.git
				synced 2025-10-31 10:07:15 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			209 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			209 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import React from 'react';
 | |
| import './fab.scss';
 | |
| 
 | |
| export const Fab = (props) => {
 | |
|     return (
 | |
|         <div className="component_fab" onClick={props.onClick}>
 | |
|           {props.children}
 | |
|         </div>
 | |
|     );
 | |
| }
 | 
