Migrate from Vue to React framework.

This commit is contained in:
Ahmed Bouhuolia
2020-02-16 17:38:55 +02:00
parent a97b527e8c
commit b3849e55e9
125 changed files with 12278 additions and 16669 deletions

View 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,
}
];