Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

695 B

Angular Components

Components are the main building block for Angular applications. Each component consists of:

  • An HTML template that declares what renders on the page
  • A TypeScript class that defines the behavior
  • A CSS selector that defines how the component is used in a template
  • Optionally, CSS styles applied to the template

Visit the following resources to learn more: