Mathieu Masy
Mathieu Masy
Actually I really like your idea to change `renderPropsName`, but with a small tweak: ``` String | (OwnerProps, childrenFn) -> RenderPropsProps or String | (childrenFn, OnwerProps) -> RenderPropsProps ``` As...
This way my example would change to: ```javascript const RenderPropComponent = ({ name, children }) => children({ text: `Hello ${name}!` }); const component = ({ text }) => {text}; const...
Any update about this issue ? If anyone is ok with it I could easily submit a PR !
Adding these lines in `server.js`, right after `code = code.replace("",'');` solves the problem : ``` if (typeof __meteor_runtime_config__ !== 'undefined') { code = code.replace( "// ##RUNTIME_CONFIG##", "__meteor_runtime_config__ = " +...