Files
gg-backend/frontend/src/pages/Blog.tsx

14 lines
317 B
TypeScript
Raw Normal View History

2026-03-12 17:56:52 +05:30
import DashboardLayout from "@/components/layout/DashboardLayout";
export default function Blog() {
return (
<DashboardLayout>
<h1 className="text-xl font-semibold mb-4">Blog Management</h1>
<button className="px-4 py-2 bg-black text-white rounded">
Create Blog
</button>
</DashboardLayout>
);
}