-
Notifications
You must be signed in to change notification settings - Fork 134
Expand file tree
/
Copy pathApp.js
More file actions
65 lines (62 loc) · 1.8 KB
/
App.js
File metadata and controls
65 lines (62 loc) · 1.8 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import React from 'react';
import CounterButton from "./components/CounterButton";
import SpecialTextBox from "containers/SpecialTextBoxContainer";
import Counter from "./components/Counter";
import SpecialText from "./containers/SpecialText";
import UserButtons from "./components/UserButtons";
import Thermostat from "./components/Thermostat";
import Users from "./components/Users";
import ChangeTemperature from "./components/ChangeTemperature";
import VideoPlayer from "./components/VideoPlayer";
import VideoTextBox from "./components/VideoTextBox";
import CurrentCity from "./components/CurrentCity";
import CityDropDown from "./components/CityDropDown";
import SearchTextBox from "./components/SearchTextBox";
import SortUsers from "./components/SortUsers";
import ScaleVideo from "./components/ScaleVideo";
import Modal from "./components/Modal";
import ShowModal from "./components/ShowModal";
function App() {
return (
<div className="App">
<div className="container">
<CounterButton />
<br />
<SpecialTextBox />
<br />
<UserButtons />
<br />
<CityDropDown />
<br />
<ChangeTemperature />
<br />
<SearchTextBox />
<br />
<VideoTextBox />
<br />
<SortUsers />
<br />
<ScaleVideo />
<br />
<ShowModal />
</div>
<div className="container">
<Counter />
<br />
<SpecialText />
<br />
<CurrentCity />
<br />
<Thermostat />
<br />
<VideoPlayer />
<br />
</div>
<div className="container">
<Users />
</div>
<Modal />
</div>
);
}
export default App;