mirror of
https://github.com/zitadel/zitadel.git
synced 2025-06-12 15:28:35 +00:00
13 lines
360 B
TypeScript
13 lines
360 B
TypeScript
![]() |
import { CommonModule } from '@angular/common';
|
||
|
import { NgModule } from '@angular/core';
|
||
|
import { RouterModule } from '@angular/router';
|
||
|
|
||
|
import { NavToggleComponent } from './nav-toggle.component';
|
||
|
|
||
|
@NgModule({
|
||
|
declarations: [NavToggleComponent],
|
||
|
imports: [CommonModule, RouterModule],
|
||
|
exports: [NavToggleComponent],
|
||
|
})
|
||
|
export class NavToggleModule {}
|