Cannot start React App after installing Storybook? Here’s how to fix it
| |

Cannot start React App after installing Storybook? Here’s how to fix it

The Problem When Starting React You may have come across this issue when starting your react app after installing storybook: which is one hell of a message to read! but this gist of it is this: React uses a specific version of babel-loader, which has been overriden by storybook. With an incompatible version installed, our…

How to Configure a Path Alias in a React Typescript App for cleaner imports
| |

How to Configure a Path Alias in a React Typescript App for cleaner imports

Introduction As your Typescript React project grows with everything neatly separated in their own folder, the importing processes starts to become messy. This is specially true if we are following a project structure like react-bulletproof. Problem Your project strucure may look like this: and for us to import Button.tsx in TodoItem.tsx, our import statement will…