File size: 693 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | import { __experimentalVStack as VStack } from '@wordpress/components';
import { __ } from '@wordpress/i18n';
import { PageHeader } from '../../components/page-header';
import PageLayout from '../../components/page-layout';
import RouterLinkSummaryButton from '../../components/router-link-summary-button';
function Notifications() {
return (
<PageLayout
size="small"
header={
<PageHeader
title={ __( 'Notifications' ) }
description={ __( 'Manage your notification settings.' ) }
/>
}
>
<VStack spacing={ 4 }>
<RouterLinkSummaryButton title={ __( 'Details' ) } to="/me/notifications" />
</VStack>
</PageLayout>
);
}
export default Notifications;
|