forked from cerc-io/snowballtools-base
Part of [Service provider auctions for web deployments](https://www.notion.so/Service-provider-auctions-for-web-deployments-104a6b22d47280dbad51d28aa3a91d75) - Add support for configuring web-app deployers by - - Configuring deployer LRN (for targeted deployments) - Configuring SP auction params for deployment auction (max price and number of providers) Co-authored-by: IshaVenikar <ishavenikar7@gmail.com> Reviewed-on: cerc-io/snowballtools-base#2
31 lines
643 B
TypeScript
31 lines
643 B
TypeScript
import NewProject from './index';
|
|
import CreateWithTemplate from './Template';
|
|
import { templateRoutes } from './template/routes';
|
|
import Id from './success/Id';
|
|
import Configure from 'components/projects/create/Configure';
|
|
import Deploy from 'components/projects/create/Deploy';
|
|
|
|
export const createProjectRoutes = [
|
|
{
|
|
index: true,
|
|
element: <NewProject />,
|
|
},
|
|
{
|
|
path: 'template',
|
|
element: <CreateWithTemplate />,
|
|
children: templateRoutes,
|
|
},
|
|
{
|
|
path: 'success/:id',
|
|
element: <Id />,
|
|
},
|
|
{
|
|
path: 'configure',
|
|
element: <Configure />,
|
|
},
|
|
{
|
|
path: 'deploy',
|
|
element: <Deploy />,
|
|
},
|
|
];
|