- GearParentFlowViewer: React Flow 기반 인터랙티브 흐름도 - gear-parent-flow.html: standalone entry point - vite.config.ts: multi-entry 빌드 (main + gearParentFlow) - App.tsx: FLOW 링크 추가 - @xyflow/react 의존성 추가 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
15 lines
441 B
TypeScript
15 lines
441 B
TypeScript
import { StrictMode } from 'react';
|
|
import { createRoot } from 'react-dom/client';
|
|
import '@fontsource-variable/inter';
|
|
import '@fontsource-variable/noto-sans-kr';
|
|
import '@fontsource-variable/fira-code';
|
|
import './styles/tailwind.css';
|
|
import './index.css';
|
|
import GearParentFlowViewer from './flow/GearParentFlowViewer';
|
|
|
|
createRoot(document.getElementById('root')!).render(
|
|
<StrictMode>
|
|
<GearParentFlowViewer />
|
|
</StrictMode>,
|
|
);
|