Files
9router/src/app/(dashboard)/dashboard/page.js
2026-01-05 09:58:59 +07:00

8 lines
267 B
JavaScript

import { getMachineId } from "@/shared/utils/machine";
import EndpointPageClient from "./endpoint/EndpointPageClient";
export default async function DashboardPage() {
const machineId = await getMachineId();
return <EndpointPageClient machineId={machineId} />;
}