5. ReactJS + Typescript Concept
Install React Vite with Typescript
npx create vite@latest
//after that choose typescript
Required and Optional Props
//Let we have component like this
import type { ReactNode } from "react";
interface UserCardProps {
id:string,
name?:string...
typescript123.hashnode.dev3 min read