diff --git a/src/Components/Button.js b/src/Components/Button.js new file mode 100644 index 0000000..4bad356 --- /dev/null +++ b/src/Components/Button.js @@ -0,0 +1,11 @@ +import React from 'react' + +function Button() { + return ( +
+ +
+ ) +} + +export default Button diff --git a/src/Containers/Signup-page/Signup.js b/src/Containers/Signup-page/Signup.js new file mode 100644 index 0000000..60b2810 --- /dev/null +++ b/src/Containers/Signup-page/Signup.js @@ -0,0 +1,11 @@ +import React from 'react' + +function Signup() { + return ( +
+ Hello Signup Page +
+ ) +} + +export default Signup \ No newline at end of file