mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
Migrate from Vue to React framework.
This commit is contained in:
15
client/src/routes/authentication.js
Normal file
15
client/src/routes/authentication.js
Normal file
@@ -0,0 +1,15 @@
|
||||
import Login from '../pages/Authentication/Login';
|
||||
import ResetPassword from '../pages/Authentication/ResetPassword';
|
||||
|
||||
export default [
|
||||
{
|
||||
path: '/login',
|
||||
exact: true,
|
||||
component: Login,
|
||||
},
|
||||
{
|
||||
path: '/reset_password',
|
||||
exact: true,
|
||||
component: ResetPassword,
|
||||
}
|
||||
];
|
||||
Reference in New Issue
Block a user