No Image

React – How to use react-query?

July 27, 2021 hung-nb 0

How to install & configure Add devtools By default, React Query Devtools are not included in production bundles when process.env.NODE_ENV === ‘production’, so you don’t need […]

No Image

CSS – Tailwind (1)

July 16, 2021 hung-nb 0

tailwind-cheat-sheet Setup 1 Install taiwind css package Create configuration file Install postcss & autoprefixer & postcss-import Create configuration file “postcss.config.js” Configure Webpack for css file […]

No Image

React – Cheat sheet

November 7, 2020 hung-nb 0

Coding Keep components simple Create components as minimal as possible, few lines of code each, to avoid enormous states Separate side effects, business logic from […]

No Image

React – What’s concurrent mode (1)?

September 29, 2020 hung-nb 0

Suspense fetch-on-render Start fetching user details Wait… Finish fetching user details Start fetching posts Wait… Finish fetching posts fetch-then-render Start fetching user details Start fetching […]