React TL;DR – a human filter for most useful React content.

  • Mariusz Marcak

    Best Practices with React Hooks

    Follow the rules of Hooks Only call Hooks at the top level Only call Hooks from function components Use the ESLint plugin for ...

    Best Practices with React Hooks
  • Mariusz Marcak

    6 Tips to Improve Your Conditional Statements for Better Readability

    Returning Early Instead of if…else Using Array.includes Using Default Function Parameters Using Array.every Using Array.some Using Indexing Instead of switch…case Read the full ...

    6 Tips to Improve Your Conditional Statements for Better Readability
  • Mariusz Marcak

    How I Code When I Work With React

    Think Always in Functions Naming Functions Don’t Mount and Unmount Repeatedly No More than 10 Functions Within a Component If It Doesn’t Change, ...

    How I Code When I Work With React
  • Mariusz Marcak

    Higer Order Functions

    Higher order functions give you many creative possibilities to:     write helper functions that increase readability and scan-ability reduce future coding time ...

    Higer Order Functions