-
-
Notifications
You must be signed in to change notification settings - Fork 339
Expand file tree
/
Copy pathApp.tsx
More file actions
42 lines (39 loc) · 1.22 KB
/
App.tsx
File metadata and controls
42 lines (39 loc) · 1.22 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
39
40
41
42
import { Stage } from '@/Stage/Stage';
import { Backlog } from '@/UI/Backlog/Backlog';
import { BottomControlPanel } from '@/UI/BottomControlPanel/BottomControlPanel';
import { BottomControlPanelFilm } from '@/UI/BottomControlPanel/BottomControlPanelFilm';
import DevPanel from '@/UI/DevPanel/DevPanel';
import { Extra } from '@/UI/Extra/Extra';
import GlobalDialog from '@/UI/GlobalDialog/GlobalDialog';
import Logo from '@/UI/Logo/Logo';
import Menu from '@/UI/Menu/Menu';
import { PanicOverlay } from '@/UI/PanicOverlay/PanicOverlay';
import Title from '@/UI/Title/Title';
import Translation from '@/UI/Translation/Translation';
import { useEffect } from 'react';
import { initializeScript } from './Core/initializeScript';
import { CustomHtml } from './extends/CustomHtml/CustomHtml';
function App() {
useEffect(() => {
initializeScript();
}, []);
// Provider用于对各组件提供状态
return (
<div className="App">
<CustomHtml />
<Translation />
<Stage />
<BottomControlPanel />
<BottomControlPanelFilm />
<Backlog />
<Title />
<Logo />
<Extra />
<Menu />
<GlobalDialog />
<PanicOverlay />
<DevPanel />
</div>
);
}
export default App;