11 lines
213 B
TypeScript
11 lines
213 B
TypeScript
|
import { Component } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-zippy-basic',
|
||
|
template: `
|
||
|
<h2>Single-slot content projection</h2>
|
||
|
<ng-content></ng-content>
|
||
|
`
|
||
|
})
|
||
|
export class ZippyBasicComponent {}
|