Skip to content

Commit

Permalink
Implemented main page' components
Browse files Browse the repository at this point in the history
  • Loading branch information
Hasan-Tunc committed Jul 29, 2020
1 parent 07d141f commit 2c53c18
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
3 changes: 3 additions & 0 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.app_page {
display: flex;
}
14 changes: 8 additions & 6 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
import React from 'react';
import './App.css'
import Header from './Header';
import Sidebar from './Sidebar';
import RecommendedVideos from './RecommendedVideos';

import './App.css';

function App() {
return (
<div className="app">
<h1>Youtube</h1>

<Header/>
<div className="app_page">
<Sidebar/>
<RecommendedVideos/>
</div>

{/* Header */}
{/* Slider */}
{/* RecommendedVideos */}

</div>
);
}
Expand Down

0 comments on commit 2c53c18

Please sign in to comment.