Created
July 1, 2020 18:28
-
-
Save benhickson/e5a0939c83910127e3dddddf5021ea6f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Component, OnInit, Input } from '@angular/core'; | |
@Component({ | |
selector: 'app-image', | |
templateUrl: './image.component.html', | |
styleUrls: ['./image.component.scss'] | |
}) | |
export class ImageComponent implements OnInit { | |
@Input() imageUrl: string; | |
@Input() domId: string; | |
constructor() { } | |
ngOnInit(): void { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment