mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 01:33:33 +00:00
The purpose of this PR is to add Modals into the component library. To note, this PR is focused on the visual of the modal that will "pop-up" and not the actual pop-up implementation.
13 lines
386 B
TypeScript
13 lines
386 B
TypeScript
import { CommonModule } from "@angular/common";
|
|
import { NgModule } from "@angular/core";
|
|
|
|
import { ModalSimpleComponent } from "./modal-simple.component";
|
|
import { ModalComponent } from "./modal.component";
|
|
|
|
@NgModule({
|
|
imports: [CommonModule],
|
|
exports: [ModalComponent, ModalSimpleComponent],
|
|
declarations: [ModalComponent, ModalSimpleComponent],
|
|
})
|
|
export class ModalModule {}
|