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 ( +
+
+ +
+
+ ) +} 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`. --> + + + +