)
}
}
diff --git a/src/components/about.js b/src/components/about.js
new file mode 100644
index 0000000..f88cbaf
--- /dev/null
+++ b/src/components/about.js
@@ -0,0 +1,7 @@
+import React from 'react'
+
+function About(props) {
+ // props are passed from App as {...this.state}
+ return "we'r here"
+}
+export default About
diff --git a/src/components/index.js b/src/components/index.js
index 650dacc..2650dcc 100644
--- a/src/components/index.js
+++ b/src/components/index.js
@@ -1,6 +1,8 @@
// this is just for exporting each component from this folder,
// so they can all be imported neatly into App using object destructuring
+export { default as Navbar } from './navbar'
+export { default as About } from './about'
export { default as Tasks } from './tasks'
// export {default as CreateASign} from ./create-a-sign.js
// etc
diff --git a/src/components/navbar.js b/src/components/navbar.js
new file mode 100644
index 0000000..92d0ba9
--- /dev/null
+++ b/src/components/navbar.js
@@ -0,0 +1,34 @@
+import React from 'react'
+
+function Navbar(props) {
+ // props are passed from App as {...this.state}
+return (
+
+)
+}
+
+export default Navbar