mirror of
https://github.com/WenPai-org/wpmind.git
synced 2025-08-03 11:11:27 +08:00
22 lines
358 B
JavaScript
22 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,
|
||
|
},
|
||
|
};
|