PR-753737: Se saca el proyecto al directorio Raíz y se actualizan dependencias.

This commit is contained in:
2022-04-28 21:37:20 +00:00
parent 76272cf3a8
commit 7e9c52049a
42 changed files with 3875 additions and 3237 deletions

16
src/routes/index.js Normal file
View File

@ -0,0 +1,16 @@
import React from 'react';
import InitialComponent from '../frontend/components/InitialComponent';
import OtherComponent from '../frontend/components/OtherComponent';
const OTHER_COMPONENT = {
path: '/other-component',
element: <OtherComponent />
};
const INITIAL_COMPONENT = {
path: '/',
element: <InitialComponent />,
};
export default [ INITIAL_COMPONENT, OTHER_COMPONENT ];