Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Sourabhhsethii/8aea69534db0634d50040d52b058d044 to your computer and use it in GitHub Desktop.
Save Sourabhhsethii/8aea69534db0634d50040d52b058d044 to your computer and use it in GitHub Desktop.
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