// @flow var React = require('react'); type Props = { text: string }; export default ({ text }: Props) => (
{text}
);