mirror of
https://github.com/aleleba/create-react-ssr.git
synced 2025-04-19 06:08:07 -06:00
16 lines
385 B
TypeScript
16 lines
385 B
TypeScript
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 ];
|