If you want to validate your business niche without spending 1000s on product-market fit research:
1. Google Acquire com
2. Filter companies that are doing over 100K a year
3. Pick a product idea that resonates with you
4. Check their testimonials and reviews
5. Build the product with better features
#buildinpublic
In React, I group related state into one useState.
Here’s why:
✅Requires less code.
✅Makes it easy to send to the server.
✅Can create a single onChange handler that sets the relevant property.
✅Clarifies the relationship between fields, which makes the code easier to understand. These values represent something. What is the name of the "thing" they represent, together? Grouping state answers this important question.