// @flow import * as React from "react"; import cn from "classnames"; type Props = {| +children?: React.Node, +className?: string, |}; function MediaBody({ className, children }: Props): React.Node { const classes = cn("media-body", className); return
{children}
; } export default MediaBody;