?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/cryptoimpot.fr/wp-content/themes/blocksy/static/js/customizer/controls/



?? Go up: /home/webdevt/www/cryptoimpot.fr/wp-content/themes/blocksy/static/js/customizer

?? Viewing: customizer-values-context.js

import { useContext, createContext } from '@wordpress/element'

export const CustomizerValues = createContext({
	onChange: (key, value) => {},
	values: {},
})

export const useCustomizerValues = () => {
	const { onChange, values } = useContext(CustomizerValues)
	return [values, onChange]
}


??

??