Extending Chakra UI's Drawer to make it permanent

I have been using Chakra UI in a personal project. So far, I'm liking the library a lot since it has many similarities with Tailwind CSS. However, I found out that there is no property for making the Drawer component always open. After some searching, I discovered a solution.

Continue reading »

Creating a template for new React projects

As a software developer, I create a lot of new projects that I end up dropping, and sometimes I feel that configuring a new project is a hassle and makes me lose interest. I created a list of steps to set up a new React project and a template repository I can reuse to kickstart a workspace.

Continue reading »

Creating a centralized modal in React with Redux

While working on an application, I found some modals were duplicated because they could be shown in different parts of it. Also, there was an instance of the modal component for each modal, instead of reusing the same. I came up with a modal system that uses Redux to solve these issues.

Continue reading »