mirror of
https://github.com/decolua/9router.git
synced 2026-05-08 12:01:28 +00:00
8 lines
267 B
JavaScript
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} />;
|
|
}
|