Told you, we love sharing!
State management is one of the most important cogs of a React application. Developers can opt to work with built-in solutions, such as useContext or state management libraries like Jotai or Redux. This decision has a significant impact on the application's performance and maintainability. I decided to look into Jotai, a modern...
In today's applications, we have observed that when logging in or performing sensitive tasks online, we receive One time passwords on our registered phone numbers to secure this activity. But as a user, it is a bit vexing to remember that code and then type that into the required fields. At the same time, we may be able to auto-detect...
In my previous blog, I showed how we could create a collection in Strapi that could further be used as input data to a dynamic form component to render a form as per users requirements. Create a React Project Create a project using create react app. Refer https://reactjs.org/docs/create-a-new-react-app.html in case of any...
Software developmentTechnology
Today I am going to write about how we can use Strapi CMS to create a collection that can be later used to create forms. In my project, a similar approach has been used to create forms, It helps reduce code and makes an easy-to-use common component. Strapi is an open-source, Node. js-based, Headless CMS that saves developers a lot of...
