9 lines
182 B
TypeScript
9 lines
182 B
TypeScript
|
import { Component } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'kc-root',
|
||
|
standalone: true,
|
||
|
template: `<h1>No Keycloak Context</h1>`,
|
||
|
})
|
||
|
export class NoContextComponent {}
|