-
-
Notifications
You must be signed in to change notification settings - Fork 339
Expand file tree
/
Copy pathApp.tsx
More file actions
38 lines (37 loc) · 1.16 KB
/
App.tsx
File metadata and controls
38 lines (37 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import { useEffect } from 'react';
import { initializeScript } from '@/Core/initializeScript';
import Translation from '@/UI/Translation/Translation';
import { Stage } from '@/Stage/Stage';
import { BottomControlPanel } from '@/UI/BottomControlPanel/BottomControlPanel';
import { BottomControlPanelFilm } from '@/UI/BottomControlPanel/BottomControlPanelFilm';
import { Backlog } from '@/UI/Backlog/Backlog';
import Title from '@/UI/Title/Title';
import Logo from '@/UI/Logo/Logo';
import { Extra } from '@/UI/Extra/Extra';
import Menu from '@/UI/Menu/Menu';
import GlobalDialog from '@/UI/GlobalDialog/GlobalDialog';
import PanicOverlay from '@/UI/PanicOverlay/PanicOverlay';
import DevPanel from '@/UI/DevPanel/DevPanel';
import { StatusBar } from '@/UI/StatusBar/StatusBar';
export default function App() {
useEffect(() => {
initializeScript();
}, []);
return (
<div className="App">
<Translation />
<Stage />
<BottomControlPanel />
<BottomControlPanelFilm />
<Backlog />
<Title />
<Logo />
<Extra />
<Menu />
<GlobalDialog />
<PanicOverlay />
<DevPanel />
<StatusBar />
</div>
);
}