svrjs-nextjs-website/app/(auth)/admin/page.tsx

9 lines
140 B
TypeScript
Raw Normal View History

2024-06-20 17:02:11 +02:00
import React from "react";
import Card from "../_components/Card";
2024-06-20 15:38:05 +02:00
const AdminPage = () => {
2024-06-20 17:02:11 +02:00
return <></>;
};
2024-06-20 15:38:05 +02:00
2024-06-20 17:02:11 +02:00
export default AdminPage;