mirror of
https://github.com/zitadel/zitadel.git
synced 2025-06-15 01:58:31 +00:00
25 lines
660 B
TypeScript
25 lines
660 B
TypeScript
![]() |
import { NgModule } from '@angular/core';
|
||
|
import { CommonModule } from '@angular/common';
|
||
|
import { LinksComponent } from './links.component';
|
||
|
import { TranslateModule } from '@ngx-translate/core';
|
||
|
import { RouterModule } from '@angular/router';
|
||
|
import { MatButton, MatButtonModule } from '@angular/material/button';
|
||
|
import { HasRoleModule } from 'src/app/directives/has-role/has-role.module';
|
||
|
|
||
|
|
||
|
|
||
|
@NgModule({
|
||
|
declarations: [LinksComponent],
|
||
|
imports: [
|
||
|
CommonModule,
|
||
|
TranslateModule,
|
||
|
RouterModule,
|
||
|
MatButtonModule,
|
||
|
HasRoleModule,
|
||
|
],
|
||
|
exports: [
|
||
|
LinksComponent,
|
||
|
]
|
||
|
})
|
||
|
export class LinksModule { }
|