mirror of
https://github.com/bitwarden/jslib
synced 2026-01-20 01:13:19 +00:00
Component Library scaffolding (#625)
This commit is contained in:
11
components/src/button/button.module.ts
Normal file
11
components/src/button/button.module.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { CommonModule } from "@angular/common";
|
||||
import { NgModule } from "@angular/core";
|
||||
|
||||
import { ButtonComponent } from "./button.component";
|
||||
|
||||
@NgModule({
|
||||
imports: [CommonModule],
|
||||
exports: [ButtonComponent],
|
||||
declarations: [ButtonComponent],
|
||||
})
|
||||
export class ButtonModule {}
|
||||
Reference in New Issue
Block a user