Files: 99bc16e5212f7086422943407911f7c31443ab4c / app / util / fetch-element.js
272 bytesRaw
1 | import React from 'react' |
2 | |
3 | export default function fetchElement (Component, props) { |
4 | if (Component.fetchData) { |
5 | Component.fetchData( |
6 | store.getState, store.dispatch, |
7 | props.location, props.params |
8 | ) |
9 | } |
10 | return React.createElement(Component, props) |
11 | } |
12 | |
13 |
Built with git-ssb-web