| 135 | class NestedComponent {} |
| 136 | |
| 137 | @Component({ |
| 138 | selector: 'app', |
| 139 | imports: [NestedComponent], |
| 140 | template: ` <nested /> `, |
| 141 | }) |
| 142 | class SimpleComponent {} |
| 143 | |
| 144 | const html = await ssr(SimpleComponent); |
| 145 | const ssrContents = getAppContents(html); |