mirror of
				https://github.com/DerTyp7/explainegy-nextjs.git
				synced 2025-10-29 21:02:13 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			328 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			328 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import React from "react";
 | |
| import styles from "../styles/modules/AdminControl.module.scss";
 | |
| 
 | |
| export default function AdminControl() {
 | |
|   return (
 | |
|     <div className={styles.adminControl}>
 | |
|       <button className="danger">Delete this article</button>
 | |
|       <button className="warning">Edit this article</button>
 | |
|     </div>
 | |
|   );
 | |
| }
 | 
