-
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.94 KB
/
App.js
File metadata and controls
65 lines (62 loc) · 1.94 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 "./containers/CounterButtonContainer";
import SpecialTextBox from "./containers/SpecialTextBoxContainer";
import Counter from "./containers/CounterContainer";
import SpecialText from "./containers/SpecialTextContainer";
import UserButtons from "./containers/UserButtonContainer";
import Thermostat from "./containers/ThermostatContainer";
import Users from "./containers/UsersContainer";
import ChangeTemperature from "./containers/ChangeTempContainer";
import VideoPlayer from "./containers/VideoPlayerContainer";
import VideoTextBox from "./containers/VideoTextBoxContainer";
import CurrentCity from "./containers/CurrentCityContainer";
import CityDropDown from "./containers/CityDropDownContainer";
import SearchTextBox from "./containers/SearchTextBoxContainer";
import SortUsers from "./containers/SortUserContainer";
import ScaleVideo from "./containers/ScaleVideoContainer";
import Modal from "./containers/ModalContainer";
import ShowModal from "./containers/ShowModalContainer";
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;