Tom Jenkins
Tom Jenkins
@renanvalentin : have you gotten any further with this? I'm investigating fractal routes right now and am looking for more examples/documentation.
I think we should look at the concept of the [React Fractal Structure](https://github.com/davezuko/react-redux-starter-kit/wiki/Fractal-Project-Structure). Basically each chunk would have its own `components`, `containers`, `store`, etc. This way each chunk/route would be...
Oh I completely understand that @ajhool, its a big 👍 from me for that too. However the fractal structure above just makes a giant component heap for each chunk independently...
I love the feature of just doing `import { XYZ } from 'components'`. (I just got caught doing some stuff "prematurely" 😁 .) I'm not in favor of removing it...
@santino : that sounds similar to what happened to me. Basically, you have to use the components you import in function so they are defined when the function is called....
I think I need to make a corresponding update to `Router.pushRoute`
I don't think this is necessary with the ability to provide own Link/Router
@jaydenseric : this worked: ``` const React = require('react') const PropTypes = require('prop-types') const NextLink = require('next/link').default const NextRouter = require('next/router').default const addHash = (href, as, hash) => ( hash...
that looks correct... where are you calling `findDOMNode`?
@GeekRishabh : I'm in the process of testing some changes I've made to withReduxSaga to allow it to call the wrapped component's `getInitialProps` (if it exists). Is that something that...