diff --git a/public/index.html b/public/index.html index aa069f2..72f1ba1 100644 --- a/public/index.html +++ b/public/index.html @@ -24,7 +24,7 @@ work correctly both with client-side routing and a non-root public URL. Learn how to configure a non-root public URL by running `npm run build`. --> - React App + Password Generator diff --git a/src/App.js b/src/App.js index 3784575..6d19e9f 100644 --- a/src/App.js +++ b/src/App.js @@ -1,24 +1,11 @@ -import logo from './logo.svg'; import './App.css'; +import PasswordForm from './components/PasswordForm'; function App() { return ( -
-
- logo -

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

- - Learn React - -
-
+
+ +
); } diff --git a/src/components/PasswordForm.jsx b/src/components/PasswordForm.jsx new file mode 100644 index 0000000..de633ca --- /dev/null +++ b/src/components/PasswordForm.jsx @@ -0,0 +1,58 @@ +import React from 'react'; + +function PasswordForm() { + return( +
+
+

Password Generator

+
+

Generate

+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+
+
+ ); +} + +export default PasswordForm;