Creating Reusable React Components with TypeScript
Often we write React components that get bigger and bigger and at some point, we extract parts of it into separate components. Either because the component is getting too big or because we need parts of it somewhere else. This is generally a good app...