Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
f82524ce700b1a5bd4e6a2dca6ca3dfeaf2c5638
/
.
/
scouting
/
www
/
counter_button
/
counter_button.module.ts
blob: 25bafcb129e330676c10f19696e80ad583ab1154 [
file
] [
log
] [
blame
]
import
{
NgModule
}
from
'@angular/core'
;
import
{
CounterButton
}
from
'./counter_button.component'
;
@NgModule
({
declarations
:
[
CounterButton
],
exports
:
[
CounterButton
],
})
export
class
CounterButtonModule
{
}