Last active
February 24, 2023 00:37
-
-
Save shadow1349/f0ad68a6cd7cee1b46c4cc25fdeb913e to your computer and use it in GitHub Desktop.
This file contains hidden or 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 } from '@angular/core'; | |
@Component({ | |
selector: 'app-form', | |
templateUrl: './form.component.html', | |
}) | |
export class FormComponent { | |
name: string; | |
onSubmit() { | |
console.log('Form submitted:', this.name); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment