15 lines
255 B
TypeScript
15 lines
255 B
TypeScript
import React from 'react';
|
|
|
|
export default {
|
|
'routes.customRoutes': {
|
|
routes: {
|
|
$push: [
|
|
{
|
|
path: '/custom',
|
|
children: () => <h1 style={{ color: 'white' }}>Hello Custom Route</h1>,
|
|
},
|
|
],
|
|
},
|
|
},
|
|
};
|