module.exports = {
...
output: {
publicPath: '/'
}
}
create new function every re-render
React.createElement(component, props, ...children);
render() {
const { myChildren, children } = this.props;
return <div>{children/* или myChildren */}</div>;
}