react-use-comlink icon indicating copy to clipboard operation
react-use-comlink copied to clipboard

Three ways to use Comlink web workers through React Hooks (and in a typesafe manner).

Results 1 react-use-comlink issues
Sort by recently updated
recently updated
newest added

I created a simple object similar to the example: ``` import { expose } from 'comlink' export const SortWorker = { hello: 'world', sort() { return 'sort worker ran!' },...