import React, { Component } from 'react'; import './component.css'; interface IComponentProps { text?: string; } class NewComponent extends Component { public render() { const { text } = this.props; return ( ); } } export default NewComponent;