From b34cdba24fe2c2b445adcb3cf7c3e65e79ff6fd0 Mon Sep 17 00:00:00 2001 From: MikunoNaka Date: Fri, 26 Mar 2021 21:38:05 +0530 Subject: first commit, doesn't do anything yet --- src/components/App.js | 10 ++++++++++ src/components/Header.js | 13 +++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 src/components/App.js create mode 100644 src/components/Header.js (limited to 'src/components') diff --git a/src/components/App.js b/src/components/App.js new file mode 100644 index 0000000..666667b --- /dev/null +++ b/src/components/App.js @@ -0,0 +1,10 @@ +import React from "react"; + +const App = () => { + const txt = "sldjflksjdfljsd"; + return ( +

{txt}

+ ) +} + +export default App diff --git a/src/components/Header.js b/src/components/Header.js new file mode 100644 index 0000000..ecc2b42 --- /dev/null +++ b/src/components/Header.js @@ -0,0 +1,13 @@ +import React from "react"; +// import React, { useState } from "react"; + +const App = () => { + // const [activeLink, updateActiveLink] = useState("home") + return ( +
+ +
+ ) +} + +export default App -- cgit v1.2.3