mirror of
https://gh.wpcy.net/https://github.com/elementor/hello-theme.git
synced 2026-04-28 12:22:20 +08:00
6 lines
176 B
JavaScript
6 lines
176 B
JavaScript
import { useContext } from 'react';
|
|
import { SettingsContext } from './settings-provider';
|
|
|
|
export const useSettingsContext = () => {
|
|
return useContext( SettingsContext );
|
|
};
|