Squashed commit of the following: commit 1aab96d7f243c77adbd806196f76b931f4445976 Author: Erik Tiekstra <erik.tiekstra@arbetsformedlingen.se> Date: Thu Oct 28 11:38:05 2021 +0200 Added digi-link component to ui lib
13 lines
427 B
TypeScript
13 lines
427 B
TypeScript
import { CommonModule } from '@angular/common';
|
|
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
|
|
import { RouterModule } from '@angular/router';
|
|
import { LinkButtonComponent } from './link-button.component';
|
|
|
|
@NgModule({
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
declarations: [LinkButtonComponent],
|
|
imports: [CommonModule, RouterModule],
|
|
exports: [LinkButtonComponent],
|
|
})
|
|
export class UiLinkButtonModule {}
|