interface WelcomeProps { | |
name: string; | |
children: React.ReactNode; | |
} | |
function Welcome(props: WelcomeProps) { | |
return <h1>Hello, {props.name}</h1>; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment