Alex Perry | f82524c | 2022-03-09 20:04:47 -0800 | [diff] [blame^] | 1 | import {NgModule} from '@angular/core'; |
2 | |||||
3 | import {CounterButton} from './counter_button.component'; | ||||
4 | |||||
5 | @NgModule({ | ||||
6 | declarations: [CounterButton], | ||||
7 | exports: [CounterButton], | ||||
8 | }) | ||||
9 | export class CounterButtonModule { | ||||
10 | } |