diff options
| author | Kamal Wickramanayake <kamal@inbox.lk> | 2026-07-01 20:41:10 +0530 |
|---|---|---|
| committer | Kamal Wickramanayake <kamal@inbox.lk> | 2026-07-01 20:41:10 +0530 |
| commit | 282a6af67b7ab8cce02f9c1e517008fbd775cf93 (patch) | |
| tree | bbe9ca9a6b7808b55282860f5e3d25856afbb8e5 /react/07-react-router/src/features/auth/components | |
| parent | 6032e3533fa01cb722d750db13419406da344ae0 (diff) | |
Added React Router sample app
Diffstat (limited to 'react/07-react-router/src/features/auth/components')
| -rw-r--r-- | react/07-react-router/src/features/auth/components/Login.jsx | 9 | ||||
| -rw-r--r-- | react/07-react-router/src/features/auth/components/Register.jsx | 9 |
2 files changed, 18 insertions, 0 deletions
diff --git a/react/07-react-router/src/features/auth/components/Login.jsx b/react/07-react-router/src/features/auth/components/Login.jsx new file mode 100644 index 0000000..45e3e9d --- /dev/null +++ b/react/07-react-router/src/features/auth/components/Login.jsx @@ -0,0 +1,9 @@ +import React from 'react' + +const Login = () => { + return ( + <div>Login</div> + ) +} + +export default Login
\ No newline at end of file diff --git a/react/07-react-router/src/features/auth/components/Register.jsx b/react/07-react-router/src/features/auth/components/Register.jsx new file mode 100644 index 0000000..bb20b14 --- /dev/null +++ b/react/07-react-router/src/features/auth/components/Register.jsx @@ -0,0 +1,9 @@ +import React from 'react' + +const Register = () => { + return ( + <div>Register</div> + ) +} + +export default Register
\ No newline at end of file |
