mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-26 01:14:19 +08:00
14 lines
446 B
JavaScript
14 lines
446 B
JavaScript
/**
|
|
* Settings UI Extension System
|
|
*
|
|
* Allows modules to register settings components that render in specific locations.
|
|
*/
|
|
|
|
export { SLOTS } from './slots';
|
|
export { registerSetting, unregisterSetting } from './registry';
|
|
export { useRegisteredSettings, useExtensionStores } from './hooks';
|
|
export { STORE_NAME } from './store';
|
|
export { createExtensionStore } from './createExtensionStore';
|
|
|
|
// Initialize store on import
|
|
import './store';
|