forked from cerc-io/snowballtools-base
* Create layout for create project with template * Handle create project with tempalte form * Refactor pages folder according to routes * Add navigation to create project with template page --------- Co-authored-by: neeraj <neeraj.rtly@gmail.com>
21 lines
354 B
TypeScript
21 lines
354 B
TypeScript
import React from 'react';
|
|
|
|
import Projects from './Projects';
|
|
import Settings from './Settings';
|
|
import { projectsRoutes } from './projects/routes';
|
|
|
|
export const homeRoutes = [
|
|
{
|
|
index: true,
|
|
element: <Projects />,
|
|
},
|
|
{
|
|
path: 'settings',
|
|
element: <Settings />,
|
|
},
|
|
{
|
|
path: 'projects',
|
|
children: projectsRoutes,
|
|
},
|
|
];
|