mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-17 16:00:14 +01:00
feat(forms): add the form inputs and the form layouts pages
This commit is contained in:
parent
8649247f87
commit
3e47df7526
11 changed files with 685 additions and 47 deletions
|
|
@ -5,19 +5,17 @@ import { NgxEditorsComponent } from './editors.component';
|
|||
import { NgxTinyMCEComponent, NgxTinyMCEEditorComponent } from './tinyMCE.component';
|
||||
import { NgxCKEditorComponent } from './ckeditor.component';
|
||||
|
||||
const routes: Routes = [
|
||||
{
|
||||
path: '',
|
||||
component: NgxEditorsComponent,
|
||||
children: [{
|
||||
path: 'tinymce',
|
||||
component: NgxTinyMCEComponent,
|
||||
}, {
|
||||
path: 'ckeditor',
|
||||
component: NgxCKEditorComponent,
|
||||
}],
|
||||
},
|
||||
];
|
||||
const routes: Routes = [{
|
||||
path: '',
|
||||
component: NgxEditorsComponent,
|
||||
children: [{
|
||||
path: 'tinymce',
|
||||
component: NgxTinyMCEComponent,
|
||||
}, {
|
||||
path: 'ckeditor',
|
||||
component: NgxCKEditorComponent,
|
||||
}],
|
||||
}];
|
||||
|
||||
@NgModule({
|
||||
imports: [RouterModule.forChild(routes)],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue