Files
bewell-in-ua/app/(protected)/admin/entity/page.tsx
2025-03-11 02:54:09 +02:00

17 lines
338 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Link from 'next/link'
import AdminPermission from '@/components/(protected)/admin/auth/permission'
export default function AdminEntityPage() {
return (
<div>
<AdminPermission />
<p>
<Link href='/admin/entity/create'>
Створити блок / статтю / сторінку
</Link>
</p>
</div>
)
}