1
ReactBeginner#fundamentals
Default values are given with destructuring defaults, and types are checked with TypeScript rather than PropTypes in modern codebases.
type Props = { size?: 'sm' | 'lg' };
function Button({ size = 'sm' }: Props) { /* ... */ }