React Component Structure
type ComponentNameProps {
prop1: string // Value to be passed
prop2: (string) => string // Callback
}
export default function ComponentName({prop1, prop2} : ComponentNameProps ) {
...
}
Rules:
Last updated
type ComponentNameProps {
prop1: string // Value to be passed
prop2: (string) => string // Callback
}
export default function ComponentName({prop1, prop2} : ComponentNameProps ) {
...
}
Last updated