test: export TableModule in benchmarks (#32404)

This fixes the error in g3:

```
error TS100: Cannot determine the module for class LargeTableComponent in
modules/benchmarks/src/largetable/render3/table.ts!
Add LargeTableComponent to the NgModule to fix it.
```

PR Close #32404
This commit is contained in:
Keen Yee Liau 2019-08-29 11:19:36 -07:00 committed by Miško Hevery
parent d5101dff3b
commit 266c267b62
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ export class LargeTableComponent {
}
@NgModule({declarations: [LargeTableComponent], imports: [CommonModule]})
class TableModule {
export class TableModule {
}