module.exports = React.createClass displayName: 'LazyRender' getInitialState: -> props: @props componentWillReceiveProps: (newProps) -> setTimeout (=> @setState newProps), 10 shouldComponentUpdate: (newProps, newState) -> @state isnt newState render: -> React.cloneElement React.Children.only(@props.children), @state