aboutsummaryrefslogtreecommitdiffstats
path: root/stories/angular/helpers/modal-inner-content-example.component.ts
blob: 7e59ab1804310ac1a31bc1ed14ac4c6356c94c98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { Component, Input } from "@angular/core";

@Component({
    selector: "inner-content",
    template: `
        <div>
            <sdc-input label="Enter value" [(value)]="name"> </sdc-input>
            <sdc-input label="Enter value" [(value)]="name"> </sdc-input>
            <sdc-input label="Enter value" [(value)]="name"> </sdc-input>
        </div>
`
})
export class ModalInnerContent {

    @Input() name:string;
}