mirror of
https://github.com/WenPai-org/wpmind.git
synced 2025-08-03 02:48:41 +08:00
changed settings API and page to React + rest changed structure of scripts - different folders for editor and admin scripts
21 lines
358 B
JavaScript
21 lines
358 B
JavaScript
/**
|
|
* WordPress dependencies
|
|
*/
|
|
import { __ } from '@wordpress/i18n';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import PageWelcome from '../page-welcome';
|
|
import PageSettings from '../page-settings';
|
|
|
|
export default {
|
|
welcome: {
|
|
label: __('Welcome', 'mind'),
|
|
block: PageWelcome,
|
|
},
|
|
settings: {
|
|
label: __('Settings', 'mind'),
|
|
block: PageSettings,
|
|
},
|
|
};
|