Actions
Bug #28443
closedReactApp component fails with webpack-4
Description
Asana task assigned to Avi Sharvit
Since the Layout exported with wrappers, it fails when calling `Layout.propTypes.data`
```js
// Layout/index.js
export default withRouter(connect(mapStateToProps, mapDispatchToProps)(Layout));
// ReactApp.js
import Layout from '../components/Layout';
layout: Layout.propTypes.data,
```
Need to import the propTypes directly
Actions