MonoRepo Development Style via Angular.source: https://angular.io/guide/file-structure The "ng new" angular cli command creates an initial skeleton application at the root level of the workspace, along with its end-to-end tests. The skeleton is for a simple Welcome application that is rea...Sep 10, 2023·3 min read
Exporting & Importing modules in javascriptWriting Moduler code in javascript by splitting the code in multiple files. The two types of export i.e default way and named exports way: lets understand them one by one: 1- Lets understand the default exports from below example: // author.js file b...Mar 4, 2023·2 min read
Using state with form fields in reactlets understand the two approaches here for managing multiple form field state.Mar 3, 2023·2 min read
Understanding Props in React.Props in React: 1- We use props to pass state/data to its child components, and we pass it with the help of props and then in child component, we receive it as a function parameter(in functional component) and then can utilize it as required or furth...Mar 2, 2023·2 min read
reactJs(Custom Hooks)reactJs(Custom Hooks) notes.Although there are multiple react hooks already available which I have already covered in my previous articles, but sometimes as per our useCase/requirement we can also create a brand new react hook, which could be a combi...Feb 18, 2023·3 min read