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