const routes: Routes = [
{
path: '',
- component: BlueprintComponent
+ component: BlueprintComponent,
+ children: [
+ {
+ path: '',
+ loadChildren: './select-template/select-template.module#SelectTemplateModule'
+ },
+ {
+ path: 'selectTemplate',
+ loadChildren: './select-template/select-template.module#SelectTemplateModule'
+ },
+ {
+ path: 'modifyTemplate',
+ loadChildren: './modify-template/modify-template.module#ModifyTemplateModule'
+ },
+ {
+ path: 'testTemplate',
+ loadChildren: './test-template/test-template.module#TestTemplateModule'
+ },
+ {
+ path: 'deployTemplate',
+ loadChildren: './deploy-template/deploy-template.module#DeployTemplateModule'
+ }
+ ]
}
];
See the License for the specific language governing permissions and
limitations under the License.
============LICENSE_END============================================ -->
-<p>
- blueprint works!
-</p>
+<app-cbawizard></app-cbawizard>
+<router-outlet></router-outlet>
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
+
import { BlueprintComponent } from './blueprint.component';
import { BlueprintRoutingModule } from './blueprint-routing.module';
+import { SharedModule } from '../../../app/common/shared/shared.module';
+
@NgModule({
declarations: [
BlueprintComponent
],
imports: [
CommonModule,
- BlueprintRoutingModule
+ BlueprintRoutingModule,
+ SharedModule
]
})
export class BlueprintModule { }