File size: 260 Bytes
6111b2b
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { getMachineId } from "@/shared/utils/machine";
import CliCodePageClient from "./CliCodePageClient";

export default async function CliCodePage() {
  const machineId = await getMachineId();
  return <CliCodePageClient machineId={machineId} />;
}