Created
May 15, 2020 11:30
-
-
Save Sourabhhsethii/8aea69534db0634d50040d52b058d044 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 } from '@angular/core'; | |
@Component({ | |
selector: 'app-sample-form-component', | |
template: ` | |
<p> | |
sample-form-component works! | |
</p> | |
`, | |
styles: [ | |
] | |
}) | |
export class SampleFormComponentComponent implements OnInit { | |
constructor() { } | |
ngOnInit(): void { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment