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 | }) | ||||
Philipp Schrader | 817cce3 | 2022-03-26 15:00:00 -0700 | [diff] [blame^] | 9 | export class CounterButtonModule {} |