BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
import { GridModule } from '@syncfusion/ej2-angular-grids';
. . .
@NgModule({
imports: [
RouterModule.forChild([
{path: '', component: EmpresaListComponent, canActivateChild: [AuthGuard]},
{path: 'add', component: EmpresaComponent, canActivateChild: [AuthGuard]},
{path: 'edit/:id', component: EmpresaComponent, canActivateChild: [AuthGuard]}
]),
CommonModule,GridModule],
. . .
})
export class EmpresaModule { } |