React- How to call a Child Function from Parent Component?
We have a parent component called <Dad/> And let’s say its child is <Son/> Now we know if a function callDad() is defined in <Dad/>, it’s child can easily call it if we pass it to the child in props e.g. <Son func={callDad} However, what about vice-versa? Is it even possible to call a function … Read more
How to generate PDF Table from API Data in React ? | jsPDF and jsPDF-autotable Javascript library
As a frontend developer, we get Data from API Responses all the times. And we render it on UI. However, sometimes we might not want to display this data on UI. Instead we want it in a PDF that can be downloaded easily. We will use jsPDF library to achieve this. In some situations, we … Read more
Git Warning- “LF will be replaced by CRLF” in Windows
as a newbie in programming, we often see git warning “”LF will be replaced by CRLF” in Windows. Know what it does mean.
How to use FieldArray Component of Formik in React?
FieldArray component of Formik helps in handling list of form fields.