Skip to content

Instantly share code, notes, and snippets.

@hypeJunction
Created February 13, 2021 17:40
Show Gist options
  • Save hypeJunction/37342adaac4da3e05f20f539f0d87914 to your computer and use it in GitHub Desktop.
Save hypeJunction/37342adaac4da3e05f20f539f0d87914 to your computer and use it in GitHub Desktop.
function MessageView () {
const {
context: {
message
}
} = useMachineState()
return (
<>
<p>Your message to {message.recipient} has been sent</p>
<blockquote>{message.text}</blockquote>
</>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment