mirror of
				https://github.com/DerTyp7/explainegy-nextjs.git
				synced 2025-11-04 07:19:00 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			267 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			267 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import React from "react";
 | 
						|
 | 
						|
export default function AdminCategoriesPage() {
 | 
						|
  return (
 | 
						|
    <div>
 | 
						|
      <h1>Page to manage categories</h1>
 | 
						|
      <a href="/admin/categories/create">create new category</a> <br />
 | 
						|
      <p>List of existing category</p>
 | 
						|
    </div>
 | 
						|
  );
 | 
						|
}
 |