Skip to content

Instantly share code, notes, and snippets.

@codingnninja
Created March 11, 2019 12:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codingnninja/7087b13dec86fe7fa1228511280f9b3a to your computer and use it in GitHub Desktop.
Save codingnninja/7087b13dec86fe7fa1228511280f9b3a to your computer and use it in GitHub Desktop.
function Dialog(props) {
return (
<div className="dialog">
<h1 className="Dialog-title">
{props.title}
</h1>
<p className="Dialog-message">
{props.message}
</p>
{props.children}
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment