Skip to content

Instantly share code, notes, and snippets.

@shadow1349
Last active February 24, 2023 00:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shadow1349/f0ad68a6cd7cee1b46c4cc25fdeb913e to your computer and use it in GitHub Desktop.
Save shadow1349/f0ad68a6cd7cee1b46c4cc25fdeb913e to your computer and use it in GitHub Desktop.
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