git ssb

1+

dinoworm ๐Ÿ› / catstack



Tree: 9d686731c98362ae2b8b1b866c86eaae530c1798

Files: 9d686731c98362ae2b8b1b866c86eaae530c1798 / app / util / fetch-element.js

371 bytesRaw
1import React from 'react'
2
3export default function fetchElement (store) {
4 return function (Component, props) {
5 if (Component.fetchData) {
6 process.nextTick(function () {
7 Component.fetchData(
8 store.getState, store.dispatch,
9 props.location, props.params
10 )
11 })
12 }
13 return React.createElement(Component, props)
14 }
15}
16

Built with git-ssb-web