PR-753737: Cambiando la carpeta src a client y moviendo todo a una carpeta dentro de client llamada src.

This commit is contained in:
2022-04-25 15:12:43 +00:00
parent e12e752a55
commit ed62a71551
30 changed files with 33 additions and 29 deletions

View File

@ -1,16 +0,0 @@
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 ];