// import * as PropTypes from "prop-types"; import * as React from "react"; interface Props { text: string; } class C extends React.Component { render() { return

{this.props.text}

; } } // C.propTypes = { // text: PropTypes.string.isRequired // }; export default C;