28 lines
979 B
TypeScript
28 lines
979 B
TypeScript
"use client";
|
|
|
|
import React from "react";
|
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
|
|
|
|
export default function TestOrderRegistrationPage() {
|
|
return (
|
|
<div className="container mx-auto space-y-6 p-6">
|
|
<div>
|
|
<h1 className="text-3xl font-bold">수주 등록 테스트</h1>
|
|
<p className="text-muted-foreground mt-2">이 페이지는 빌드 에러로 인해 임시로 비활성화되었습니다.</p>
|
|
</div>
|
|
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>빌드 에러 수정 중</CardTitle>
|
|
<CardDescription>ModalRepeaterTable 순환 참조 문제를 해결한 후 다시 활성화됩니다.</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<p className="text-muted-foreground text-sm">
|
|
에러 메시지: ReferenceError: Cannot access 'h' before initialization
|
|
</p>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
);
|
|
}
|