function Row(props) { return (
{props.children}
); } function Content(props) { return (
{props.title} {props.subtitle}
); } function Action(props) { return
{props.children}
; } export { Row, Content, Action };