UNPKG

290 BJavaScriptView Raw
1import { Component } from 'react';
2import { func, string } from 'prop-types';
3
4export default class ContainerChild extends Component {
5 static propTypes = {
6 id: string.isRequired,
7 render: func.isRequired
8 };
9
10 render() {
11 return this.props.render();
12 }
13}