dongjinkim.vercel.appCreating custom properties in react componentIntroduction Sometimes when we are creating components in React, we might need to create custom properties for productive code. Code Example_component.tsx import React from 'react' type CardProps = { ProductName: string Description: string Pri...Nov 28, 2023·1 min read
dongjinkim.vercel.appCRUD API with Next.js and PrismaIntroduction I'm currently working on a chat web application, and I'm using Next.js with Prisma for it. In this post, I will show you how I made CRUD API with Next.js and Prisma. Code schema.prisma generator client { provider = "prisma-client-js" }...Nov 22, 2023·2 min read
dongjinkim.vercel.appBuilding My Own Weather Web App from Scratch!Introduction This year I started learning web development, which I already tried for long time ago and failed. This time I tried React write away before even learning basic HTML, CSS and JS. After I finished the video course on YouTube about React.js...Nov 19, 2023·1 min read