git ssb

1+

dinoworm ๐Ÿ› / catstack



Tree: 1b77a91b5043f96c866edfed9022577b95e3c14f

Files: 1b77a91b5043f96c866edfed9022577b95e3c14f / 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