This repository has been archived on 2025-06-12. You can view files and clone it, but cannot push or open issues or pull requests.
forms/client/src/app/userinfo/userinfo.component.ts
Naomi Carrigan f2c6d6d3ef
Some checks failed
Node.js CI / Lint and Test (pull_request) Failing after 1m27s
feat: resolve lint/build/test errors
2025-02-17 11:48:46 -08:00

24 lines
720 B
TypeScript

/**
* @copyright nhcarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
import { Component, input } from "@angular/core";
import { SingleLineComponent }
from "../inputs/single-line/single-line.component";
import type { FormControl } from "@angular/forms";
@Component({
imports: [ SingleLineComponent ],
selector: "app-userinfo",
styleUrl: "./userinfo.component.css",
templateUrl: "./userinfo.component.html",
})
export class UserinfoComponent {
public firstNameControl = input.required<FormControl>();
public lastNameControl = input.required<FormControl>();
public emailControl = input.required<FormControl>();
public companyControl = input.required<FormControl>();
}