Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions public/Follow.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
function Follow(props) {
return (
<div>
<div className="follow">
<h3>Rec'd list of people to follow</h3>
</div>
</div>
)
}
9 changes: 9 additions & 0 deletions public/Header.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
function Header() {
return (
<div>
<div className="header">
<h1>Header goes here</h1>
</div>
</div>
)
}
17 changes: 14 additions & 3 deletions public/Main.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
function Main(){
return <div>Hello</div>
}
function Main(props){
return (
<div>
<div>
<Header/>
<User/>
<Newsfeed/>
<Follow/>
<Trends/>
<Video/>
</div>
</div>
)
}
9 changes: 9 additions & 0 deletions public/Newsfeed.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
function Newsfeed() {
return (
<div>
<div className="newsfeed">
<h3>Newsfeed here</h3>
</div>
</div>
)
}
9 changes: 9 additions & 0 deletions public/Trends.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
function Trends() {
return (
<div>
<div className="trends">
<h3>Unordered List of Trends here</h3>
</div>
</div>
)
}
9 changes: 9 additions & 0 deletions public/User.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
function User() {
return (
<div>
<div className="user">
<h3>Profile Basics Appear Here</h3>
</div>
</div>
)
}
9 changes: 9 additions & 0 deletions public/Video.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
function Video(props) {
return (
<div>
<div className="video">
<h3>Video</h3>
</div>
</div>
)
}
38 changes: 38 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,38 @@
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.0.1/react.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.0.1/react-dom.min.js"></script>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
<style>
.header {
width: 100%;
height: 40px;
background-color: gray;
}

.user {
width: 25%;
height: 40px;
background-color: blue;
}

.trends {
width: 25%;
height: 60px;
background-color: purple;
}

.newsfeed {
width: 50%;
height: 60px;
background-color: green;
}

.follow {
width: 25%;
height: 60px;
background-color: pink;
}

</style>
</head>
<body>
<div id="root"></div>
Expand All @@ -30,7 +62,13 @@
To begin the development, run `npm start`.
To create a production bundle, use `npm run build`.
-->
<script src="Header.js" type="text/jsx"></script>
<script src="User.js" type="text/jsx"></script>
<script src="Main.js" type="text/jsx"></script>
<script src="Trends.js" type="text/jsx"></script>
<script src="Newsfeed.js" type="text/jsx"></script>
<script src="Follow.js" type="text/jsx"></script>
<script src="Video.js" type="text/jsx"></script>
<script src="App.js" type="text/jsx"></script>
<script src="index.js" type="text/jsx"></script>
</body>
Expand Down