thadeu
thadeu
@developit We have an onBeforeDestroyComponent that call when one component is replaced by another?
Example code solution ```js /** * SessionDescriptionHandler options. * These options are provided to various UserAgent methods (invite() for example) * and passed through on calls to getDescription() and setDescription()....
what resolved for me was this ``` export const client = new AWSAppSyncClient({ .... auth: { type: AppSyncConfig.authenticationType, apiKey: AppSyncConfig.apiKey }, // dont use optimize response disableOffline: true }) ```
Hi guys, something about this question? I'm has been same problem
Hey @danielolivaresd thanks for open this issue. So, I'm not sure as well. But I will search about this and talk about more. Ok? We going to talk more

```js /** * const [loggedIn, setLoggedIn] = useHookStore('loggedIn') * console.log(loggedIn) * @param {*} props */ export function useHookStore(prop) { const selected = store.getState()[prop] const setter = value => store.setState({ [prop]:...
> I like it! It'd be a little unfortunate to drop the action binding stuff though. Maybe something like this? > > ```js > import { createContext } from 'preact';...