Thanks for an excellent library! os: macOS 10.14.6 browser: Chrome 76.0.3809.132 react-easy-state@6.1.3 react@16.9.0 components have no name in react devtools" when using "view(()=>\<comp /\>)" ```js // has name const RuleItem = ({ config }) => { return ( <xxx config={config} /> ) } // no name const RuleItem = view(({ config }) => { return ( <xxx config={config} /> ) }) ``` 