Lazy Load Module in Angular
Lazy Load Module in Angular Lazy loading is a technique for downloading data on-demand, such as documents, JavaScript, CSS, images, and videos, in small bits. In Angular, data is loaded in bits rather than larger pieces; we deal with lazy loading using dynamic components and the loadChildren property. In order to create lazy loading in […]
Reactive Forms in Angular
Reactive Forms in Angular Nowadays most of the websites use the Forms to collect the user data and send it to the server for processing. Forms generally have text inputs, radio buttons, check boxes, buttons, etc to collect the different types of data from the user. In this blog we will briefly discuss: Angular Forms […]