mirror of
https://github.com/bitwarden/browser
synced 2026-01-27 14:53:44 +00:00
14 lines
350 B
TypeScript
14 lines
350 B
TypeScript
import { CommonModule } from "@angular/common";
|
|
import { NgModule } from "@angular/core";
|
|
|
|
import { I18nPipe } from "@bitwarden/ui-common";
|
|
|
|
/**
|
|
* Module providing commonly used imports and exports for other component modules.
|
|
*/
|
|
@NgModule({
|
|
imports: [CommonModule, I18nPipe],
|
|
exports: [CommonModule, I18nPipe],
|
|
})
|
|
export class SharedModule {}
|