Replace the generated Nx welcome page with a minimal self-service placeholder (Dutch 'Zelfservice — BIG-registratie' heading + router-outlet); drop nx-welcome. The login + submit form arrive in S-08c. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
13 lines
270 B
TypeScript
13 lines
270 B
TypeScript
import { Component } from '@angular/core';
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
@Component({
|
|
imports: [RouterModule],
|
|
selector: 'app-root',
|
|
templateUrl: './app.html',
|
|
styleUrl: './app.css',
|
|
})
|
|
export class App {
|
|
protected title = 'self-service';
|
|
}
|