// @flow import React from 'react'; type Props = { message?: { to: string, msg: string } }; export default function CustomMessage(props: Props) { return (
A message from {props.message.to}
{props.message.msg}