-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
29 lines (27 loc) · 695 Bytes
/
App.js
File metadata and controls
29 lines (27 loc) · 695 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
import './App.css';
import CardList from './CardList';
import Main_Photo from './mainimg';
import SearchBar from './searchbar';
import Mid_section from './mid_section';
import BottomBar from './bottomsection';
import Top_section from './top_section';
import Btm_section from './featured_Tut';
import Mid_section2 from './mid_section2';
import footer from './Footer';
import CardList2 from './MyTutorial';
function App() {
return (
<div>
<SearchBar/>
<Main_Photo/>
<Top_section/>
<CardList />
<Mid_section />
<CardList2/>
<Btm_section/>
<Mid_section2/>
<BottomBar/>
</div>
);
}
export default App;