import React from 'react' type Props = { name?: string text: string } export const DialogueBox: React.FC = ({ name = 'You', text }) => { return (
{name}
{text}
) }