File "useOtherPluginsStore.js"
Full path: /home/satkhirabarta/public_html/wp-content/plugins/burst-statistics/settings/src/store/useOtherPluginsStore.js
File
size: 318 B (318 B bytes)
MIME-type: text/x-java
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
import {create} from 'zustand';
const useOtherPlugins = create( ( set ) => ({
dataLoaded: false,
setDataLoaded: ( dataLoaded ) => {
set( state => ({ dataLoaded }) );
},
pluginData: false,
setPluginData: ( pluginData ) => {
set( state => ({ pluginData }) );
}
}) );
export default useOtherPlugins;