From e0bb84cd3e33d74070a7d58cee321c7aa2102614 Mon Sep 17 00:00:00 2001 From: Juan Mata Date: Wed, 12 Jul 2017 20:57:06 -0500 Subject: [PATCH] initial commit --- public/App.js | 7 ++++-- public/CenterCol.js | 13 ++++++++++ public/Header.js | 20 +++++++++++++++ public/LeftCol.js | 17 +++++++++++++ public/Main.js | 10 ++++++-- public/RightCol.js | 13 ++++++++++ public/index.html | 59 +++++++++++++++++++++++++++++++++++++++++++++ 7 files changed, 135 insertions(+), 4 deletions(-) create mode 100644 public/CenterCol.js create mode 100644 public/Header.js create mode 100644 public/LeftCol.js create mode 100644 public/RightCol.js diff --git a/public/App.js b/public/App.js index a46a147..bc47e01 100644 --- a/public/App.js +++ b/public/App.js @@ -1,3 +1,6 @@ function App(){ - return
-} \ No newline at end of file + return
+
+
+
+} diff --git a/public/CenterCol.js b/public/CenterCol.js new file mode 100644 index 0000000..32dde7b --- /dev/null +++ b/public/CenterCol.js @@ -0,0 +1,13 @@ +function CenterCol() { + return ( +
+
+

Tweets go here

+

Tweet

+

Tweet

+

Tweet

+

Tweet

+
+
+ ) +} diff --git a/public/Header.js b/public/Header.js new file mode 100644 index 0000000..2bff161 --- /dev/null +++ b/public/Header.js @@ -0,0 +1,20 @@ +function Header() { + /*props is an object + let props = { + stuff:"stuff", + title:"title", + }; + */ + return ( +
+
+
    +
  • Home
  • +
  • Moments
  • +
  • Notifications
  • +
  • Messages
  • +
+
+
+ ) +} diff --git a/public/LeftCol.js b/public/LeftCol.js new file mode 100644 index 0000000..b46c67d --- /dev/null +++ b/public/LeftCol.js @@ -0,0 +1,17 @@ +function LeftCol() { + return ( +
+
+

User Name

+

User info

+
+
+

List of Trends

+

trend

+

trend

+

trend

+
+ +
+ ) +} diff --git a/public/Main.js b/public/Main.js index cb7c512..6009c12 100644 --- a/public/Main.js +++ b/public/Main.js @@ -1,3 +1,9 @@ function Main(){ - return
Hello
-} \ No newline at end of file + return
+
+ + + +
+
+} diff --git a/public/RightCol.js b/public/RightCol.js new file mode 100644 index 0000000..6ec51c9 --- /dev/null +++ b/public/RightCol.js @@ -0,0 +1,13 @@ +function RightCol() { + return ( +
+
+

follow them

+

follow them

+
+
+

Video goes here

+
+
+ ) +} diff --git a/public/index.html b/public/index.html index 031925a..b8be9ba 100644 --- a/public/index.html +++ b/public/index.html @@ -17,6 +17,61 @@ +
@@ -30,6 +85,10 @@ To begin the development, run `npm start`. To create a production bundle, use `npm run build`. --> + + + +