5.Create AddAttendeeComponent
In this section we will make a presentational component to add attendees.
1. Create add AddAttendeeComponent
ng g c event/components/add-attendee2. Create a Attendee interface
export interface Attendee {
name: string;
guests: number;
attending: boolean;
}
export * from './attendee';
3. Add AddAttendeeComponent selector to event container
4. Add ReactiveFormsModule to EventModule
5. Add input and reactive form to AddAttendeeComponent
6. Add form to component HTML
7. Add CSS styles to component SCSS file
8. Submit form and check it's value
StackBlitz Link
Last updated