10 lines
199 B
TypeScript
10 lines
199 B
TypeScript
import React from "react";
|
|
import LabelsView from "@/components/dashboard/labels/LabelsView";
|
|
|
|
export default async function LabelsPage() {
|
|
return (
|
|
<div>
|
|
<LabelsView />
|
|
</div>
|
|
);
|
|
} |