diff --git a/public/favicon.ico b/public/favicon.ico deleted file mode 100644 index a11777c..0000000 Binary files a/public/favicon.ico and /dev/null differ diff --git a/public/favicon.jpg b/public/favicon.jpg new file mode 100644 index 0000000..525a624 Binary files /dev/null and b/public/favicon.jpg differ diff --git a/public/index.html b/public/index.html index 985259c..2ebda86 100644 --- a/public/index.html +++ b/public/index.html @@ -2,7 +2,7 @@ - + - React App + Network resurrector diff --git a/src/App.js b/src/App.js index e9f34aa..01906e4 100644 --- a/src/App.js +++ b/src/App.js @@ -1,22 +1,11 @@ -import logo from "./logo.svg"; import "./App.css"; +import LoginContainer from "./features/login/components/LoginContainer"; function App() { return (
- logo -

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

- - Learn React - +
); diff --git a/src/features/login/components/LoginComponent.js b/src/features/login/components/LoginComponent.js new file mode 100644 index 0000000..f916bb6 --- /dev/null +++ b/src/features/login/components/LoginComponent.js @@ -0,0 +1,7 @@ +import React from "react"; + +const LoginComponent = () => { + return
TEST
; +}; + +export default LoginComponent; diff --git a/src/features/login/components/LoginContainer.js b/src/features/login/components/LoginContainer.js new file mode 100644 index 0000000..c4aeb05 --- /dev/null +++ b/src/features/login/components/LoginContainer.js @@ -0,0 +1,8 @@ +import React from "react"; +import LoginComponent from "./LoginComponent"; + +const LoginContainer = () => { + return ; +}; + +export default LoginContainer; diff --git a/src/logo.svg b/src/logo.svg deleted file mode 100644 index 9dfc1c0..0000000 --- a/src/logo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file