Skip to content

Instantly share code, notes, and snippets.

@meshaabi
Created July 25, 2023 15:13
Show Gist options
  • Save meshaabi/e523d089251942c4c115c03c9255782c to your computer and use it in GitHub Desktop.
Save meshaabi/e523d089251942c4c115c03c9255782c to your computer and use it in GitHub Desktop.
import { StoreSetState } from '../useStoreTypes';
import { RemoteConfigState } from './types';
export const createRemoteConfigSlice = (set: StoreSetState) => ({
isRemoteConfigReady: false,
remoteConfig: {},
setRemoteConfig: (remoteConfig: RemoteConfigState) =>
set(() => ({ isRemoteConfigReady: true, remoteConfig })),
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment