aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-03-26 21:38:05 +0530
committerMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-03-26 21:38:05 +0530
commitb34cdba24fe2c2b445adcb3cf7c3e65e79ff6fd0 (patch)
tree375b33f364354a9939098d61508c9a1c4589ec81 /src/components
parenta0b22d6aa60baa24225214667bc9171f83484f25 (diff)
first commit, doesn't do anything yet
Diffstat (limited to 'src/components')
-rw-r--r--src/components/App.js10
-rw-r--r--src/components/Header.js13
2 files changed, 23 insertions, 0 deletions
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 (
+ <p>{txt}</p>
+ )
+}
+
+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 (
+ <div>
+
+ </div>
+ )
+}
+
+export default App