분할 패널 및 반복 필드 그룹 컴포넌트

This commit is contained in:
kjs
2025-10-16 15:05:24 +09:00
parent 716cfcb2cf
commit a0dde51109
26 changed files with 1899 additions and 753 deletions

View File

@@ -1,26 +1,24 @@
"use client";
/**
* 제어 시스템 페이지
* 제어 시스템 페이지 (리다이렉트)
* 이 페이지는 /admin/dataflow로 리다이렉트됩니다.
*/
import { FlowEditor } from "@/components/dataflow/node-editor/FlowEditor";
import { useEffect } from "react";
import { useRouter } from "next/navigation";
export default function NodeEditorPage() {
return (
<div className="h-screen bg-gray-50">
{/* 페이지 헤더 */}
<div className="border-b bg-white p-4">
<div className="mx-auto">
<h1 className="text-2xl font-bold text-gray-900"> </h1>
<p className="mt-1 text-sm text-gray-600">
</p>
</div>
</div>
const router = useRouter();
{/* 에디터 */}
<FlowEditor />
useEffect(() => {
// /admin/dataflow 메인 페이지로 리다이렉트
router.replace("/admin/dataflow");
}, [router]);
return (
<div className="flex h-screen items-center justify-center bg-gray-50">
<div className="text-gray-500"> ...</div>
</div>
);
}