UNPKG

move-prop-types

Version:

"Help quickly replace the prop type checker in older react projects to map to prop-types"

14 lines (11 loc) 277 B
import React, { Component } from 'react'; import PropTypes from 'prop-types'; class TestComponent extends Component { render() { return <div>{this.props.name}</div>; } } TestComponent.propTypes = { name: PropTypes.string.isRequired }; export default TestComponent;