10 lines
219 B
TypeScript
10 lines
219 B
TypeScript
import React from "react";
|
|
import CategoriesView from "@/components/dashboard/categories/CategoriesView";
|
|
|
|
export default async function CategoriesPage() {
|
|
return (
|
|
<div>
|
|
<CategoriesView />
|
|
</div>
|
|
);
|
|
} |