All checks were successful
Anonymous openbaar portal completing the walking skeleton (submit → projection → public visibility). closes #10
13 lines
266 B
TypeScript
13 lines
266 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 = 'openbaar';
|
|
}
|