/* @flow */ import * as React from 'react'; type CaptionProps = { text: string, options: {}, } export default class Caption extends React.Component { render(): React.Node { return {this.props.text}; } }