space-game001/dialogEditor/src/App.tsx
2026-06-05 21:17:51 +03:00

20 lines
632 B
TypeScript

import { LeftPanel } from './components/LeftPanel/LeftPanel';
import { GraphPanel } from './components/GraphPanel/GraphPanel';
import { RightPanel } from './components/RightPanel/RightPanel';
import { PlayModeOverlay } from './components/PlayMode/PlayModeOverlay';
import { useDialogueStore } from './store/dialogueStore';
import styles from './App.module.css';
export default function App() {
const playModeActive = useDialogueStore(s => s.playModeActive);
return (
<div className={styles.app}>
<LeftPanel />
<GraphPanel />
<RightPanel />
{playModeActive && <PlayModeOverlay />}
</div>
);
}