The plugin that sets an executor task but doesn't execute it.
import lazyTask from 'react-executor/plugin/lazyTask';const executor = useExecutor('test', 42, [ lazyTask(async () => await getTheMeaningOfLife()),]); Copy
import lazyTask from 'react-executor/plugin/lazyTask';const executor = useExecutor('test', 42, [ lazyTask(async () => await getTheMeaningOfLife()),]);
The plugin that sets an executor task but doesn't execute it.