forked from sheepzh/time-tracker-4-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.tsx
More file actions
32 lines (29 loc) · 1005 Bytes
/
Main.tsx
File metadata and controls
32 lines (29 loc) · 1005 Bytes
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
import "@pages/element-ui/dark-theme.css"
import "element-plus/theme-chalk/el-button-group.css"
import "element-plus/theme-chalk/el-button.css"
import "element-plus/theme-chalk/el-descriptions-item.css"
import "element-plus/theme-chalk/el-descriptions.css"
import "element-plus/theme-chalk/el-input.css"
import "element-plus/theme-chalk/el-message-box.css"
import "element-plus/theme-chalk/el-message.css"
import "element-plus/theme-chalk/el-tag.css"
import { defineComponent } from "vue"
import Alert from "./components/Alert"
import Footer from "./components/Footer"
import Reason from "./components/Reason"
import { provideRule } from "./context"
import "./style/element-base.css"
import "./style/modal.css"
const _default = defineComponent(() => {
provideRule()
return () => (
<div id="app">
<div style={{ width: '100%' }}>
<Alert />
<Reason />
<Footer />
</div>
</div>
)
})
export default _default