import React from 'react'; export default function Message({ sender, text }) { return (
{sender}:
{text}
); }