Creating custom properties in react component
Introduction
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...
dongjinkim.vercel.app1 min read