Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
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