mirror of
				https://gitlab.com/MrFry/qmining-page
				synced 2025-04-01 20:23:44 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			280 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			280 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import styles from './button.module.css'
 | |
| 
 | |
| export default function Button (props) {
 | |
|   return (
 | |
|     <div>
 | |
|       <center>
 | |
|         <a href={props.href}>
 | |
|           <div className={styles.ircLink}>
 | |
|             {props.text}
 | |
|           </div>
 | |
|         </a>
 | |
|       </center>
 | |
|     </div>
 | |
|   )
 | |
| }
 |