import React from 'react' export const Play = ({ title }: { readonly title?: string }) => { return ( {title !== undefined ? {title} : null} ) }