UNPKG

remx

Version:
24 lines (20 loc) 461 B
import React, { Component } from 'react'; import { Text } from '../utils/testUtils'; class MyComponent extends Component { render() { if (this.props.renderSpy) { this.props.renderSpy(); } return this.props.product ? ( <Text> {this.props.product.title} </Text> ) : ( <Text> {this.props.textToRender} </Text> ); } } MyComponent.staticMember = 'a static member'; export default MyComponent;