diff --git a/src/App.js b/src/App.js index 3784575..4a514f4 100644 --- a/src/App.js +++ b/src/App.js @@ -1,23 +1,16 @@ import logo from './logo.svg'; import './App.css'; +import Button from './components/Button/Button'; +import Scan from './containers/Scan'; +import Write from './containers/Write'; function App() { return (
-
- logo -

- Edit src/App.js and save to reload. -

- - Learn React - -
+
); } diff --git a/src/components/Button/Button.css b/src/components/Button/Button.css new file mode 100644 index 0000000..e69de29 diff --git a/src/components/Button/Button.js b/src/components/Button/Button.js new file mode 100644 index 0000000..a53db35 --- /dev/null +++ b/src/components/Button/Button.js @@ -0,0 +1,9 @@ +import React from 'react'; + +const Button = ({name, fn}) => { + return ( + + ) +} + +export default Button; diff --git a/src/components/Scanner/Scanner.css b/src/components/Scanner/Scanner.css new file mode 100644 index 0000000..e69de29 diff --git a/src/components/Scanner/Scanner.js b/src/components/Scanner/Scanner.js new file mode 100644 index 0000000..32eb72f --- /dev/null +++ b/src/components/Scanner/Scanner.js @@ -0,0 +1,16 @@ +import React from 'react'; + +const Scanner = () => { + return ( +
+
+
+
+ Scanner +
+
+
+ ); +}; + +export default Scanner; \ No newline at end of file diff --git a/src/components/Writter/Witter.js b/src/components/Writter/Witter.js new file mode 100644 index 0000000..e69de29 diff --git a/src/components/Writter/Writer.css b/src/components/Writter/Writer.css new file mode 100644 index 0000000..e69de29 diff --git a/src/containers/Scan.js b/src/containers/Scan.js new file mode 100644 index 0000000..65b12c3 --- /dev/null +++ b/src/containers/Scan.js @@ -0,0 +1,10 @@ +import React from 'react'; +import Scanner from '../components/Scanner/Scanner'; + +const Scan = () => { + return ( + + ); +}; + +export default Scan; \ No newline at end of file diff --git a/src/containers/Write.js b/src/containers/Write.js new file mode 100644 index 0000000..35e1641 --- /dev/null +++ b/src/containers/Write.js @@ -0,0 +1,9 @@ +import React from 'react'; + +const Write = () => { + return ( + "Write" + ); +}; + +export default Write; \ No newline at end of file