opavader
opavader
You can try the `Dygraph` exported from the this module below. Just put it as a file in your app directory and import `Dygraph` from it. Its in typescript so...
As a temporary workaround, I have create an updated [fork](https://github.com/archsaber/moment-timezone) patched with https://github.com/moment/moment-timezone/pull/476. You can use it for now with ``` bash yarn add 'https://github.com/archsaber/moment-timezone.git#develop' ```
I too was having the same error. For now casting the return instance type to `any` as below removes the build error. ``` typescript const SortableTable = SortableContainer(Table) as any;...
Facing the same issue myself. working fine from main thread but not in worker. I am using the worker-loader with webpack as well.
Thnx @dfahlander, the `db.table('someTable')` approach seems to work. Not sure what I am doing wrong here that table fields are not getting populated. ``` typescript const LATEST_VERSION = 1; class...
I recently started using [redux-little-router](https://github.com/FormidableLabs/redux-little-router) instead of [react-router](https://github.com/ReactTraining/react-router). Its has much cleaner design & integrates extremely well with `redux-saga`. Something you can consider.
Thanks for reply @RandomEtc and great to know that you will be around for help. As for current pull request, https://github.com/square/cubism/pull/129 seems of value.