forked from godofredoninja/simply
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.jsx
96 lines (81 loc) · 2.17 KB
/
app.jsx
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
import React, { Component } from 'react'
import { createRoot } from 'react-dom/client'
/// BULMA NAVBAR
// import './app.scss';
// import { Navbar } from "./components/Navbar.jsx"
// const nnn = createRoot(document.getElementById('nnn')).render(<Navbar />);
/// KATHERINE
// import Katherine from './components/Katherine';
// const katDomContainer = document.getElementById('kat')
// const root = createRoot(katDomContainer);
// root.render(<Katherine />);
/// AKLILU
// import Aklilu from './components/Aklilu';
// const dood = createRoot(document.getElementById('Aklilu')).render(<Aklilu />);
import RotatingLogo from "./components/RotatingLogo.jsx"
if (document.getElementById("lolo")) {
const lolo = createRoot(document.getElementById('lolo'))
.render(
<RotatingLogo
style={{
height: 50,
width: 50,
display: "inline-block"
}}
logoUrl="https://s3-us-west-2.amazonaws.com/tcs-ghost/logo.svg"
/>
);
}
if (document.getElementById("logo")) {
const logo = createRoot(document.getElementById('logo'))
.render(
<RotatingLogo
style={{
height: 15,
width: 15,
display: "inline-block"
}}
logoUrl="https://s3-us-west-2.amazonaws.com/tcs-ghost/logo.svg"
/>
);
}
import Calendar from "./components/calendar.js"
if (document.getElementById("startdate")) {
const startdate = createRoot(document.getElementById('startdate'))
.render(
<Calendar
month="Sep"
date="11"
day="Monday"
/>
);
}
if (document.getElementById("enddate")) {
const enddate = createRoot(document.getElementById('enddate'))
.render(
<Calendar
month="Nov"
date="3"
day="Friday"
/>
);
}
// import Swoosh from "./components/swoosh.js"
// const swoosh = createRoot(document.getElementById('swooshid'))
// .render(
// <Swoosh />
// );
import Ishtyle from "./components/ishtyle.js"
if (document.getElementById("swooshid")) {
const swoosh = createRoot(document.getElementById('swooshid'))
.render(
<Ishtyle />
);
}
import Handwritten from "./components/handwritten.js"
if (document.getElementById("handwritten")) {
const handwritten = createRoot(document.getElementById('handwritten'))
.render(
<Handwritten />
);
}