Aral Roca Gomez
Aral Roca Gomez
> @aralroca Ok after some test in my project. I saw the compiler go on the templateWithHoc Loader because of the HOC used in my _app.tsx. > >  This...
@foldess The idea of 2.0 version is to change the regular expressions in a better way. Currently, there are 2 proposals: with Babel parser and with TypeScript compiler. We need...
@jellebouwman @giladaya @justirva09 @j-schumann The idea of 2.0 version is to change the regular expressions in a better way. Currently, there are 2 proposals: with Babel parser and with TypeScript...
@j3sch @finkrer The idea of 2.0 version is to change the regular expressions in a better way. Currently, there are 2 proposals: with Babel parser and with TypeScript compiler. We...
> The TypeScript version works as intended. Amazing! great! > Also, isn't Babel being phased out by Next in favor of their own compiler? Not sure if it's the same...
I need more context to understand the problem. Can you provide a reproducible example? Thanks
Something like this? ```js const { isLoading, error, data } = useQuery('repoData', () => fetch('https://api.github.com/repos/tannerlinsley/react-query').then(res => res.json() ) ) ```
I will think of an alternative to see if it fits. Any implementation proposal will be welcome 😊
Thanks @MikeMcElroy! Great implementation 😊 @yathink3 To use a method similar to `useQuery` for more queries is possible with something like this: ```js const { useStore } = createStore(initialStore); function...