feat(challengestandalone): challenge standalone

This commit is contained in:
ThomasL
2023-06-19 18:06:50 +02:00
parent bcf44956f9
commit 8f6716979e
165 changed files with 2794 additions and 22 deletions

View File

@@ -0,0 +1,7 @@
import { Component } from '@angular/core';
@Component({
selector: 'lib-home',
template: `Forbidden component`,
})
export class ForbiddenComponent {}

View File

@@ -0,0 +1,13 @@
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { ForbiddenComponent } from './forbidden.component';
@NgModule({
declarations: [ForbiddenComponent],
imports: [
CommonModule,
RouterModule.forChild([{ path: '', component: ForbiddenComponent }]),
],
})
export class ForbiddenModule {}