Skip to content

Instantly share code, notes, and snippets.

@Bilkiss
Last active February 23, 2021 11:02
Show Gist options
  • Save Bilkiss/df639683e840555bbe930c44e340c113 to your computer and use it in GitHub Desktop.
Save Bilkiss/df639683e840555bbe930c44e340c113 to your computer and use it in GitHub Desktop.
<example-component
[exampleProperty]="exampleData">
</example-component>
import { Component, Input } from '@angular/core';
@Component({
selector: 'example-component',
template: '<div>Hello world! I'm an example component!</div>'
})
export class ExampleComponent {
@Input()
exampleProperty: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment