How to Create Fully Reusable React ComponentsIntroduction Creating a React component is fairly easy, just a function like this, and it’s done. export default function Card() { return <div>card</div>; } then you can call them using JSX like <Card />. However, to do them correctly is the reaso...Dec 14, 2023·7 min read·46
Understanding Next.js Data Fetching (CSR, SSR, SSG, ISR)Thorough explanation on Next.js data fetching method such as CSR, SSR, SSG, and ISR.Jan 11, 2022·8 min read·1.2K
Step by step: How to setup Storybook with Next.js and Tailwind CSSIntroduction Storybook is a great way to maintain and preview isolated components. I usually add it as a 'nice-to-have' feature. During set up, I found that the resource about setting up a storybook with Next.js and Tailwind CSS is scarce. There are ...Jan 11, 2022·4 min read·34
12 Features to Maximize Efficiency on Next.js & Tailwind CSS ProjectsIncrease your efficiency by using a pre-configured starter repository, with rich development features and automation.Jan 11, 2022·8 min read·70