File size: 669 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 Security() {
	return (
		<PageLayout
			size="small"
			header={
				<PageHeader
					title={ __( 'Security' ) }
					description={ __( 'Manage your security settings.' ) }
				/>
			}
		>
			<VStack spacing={ 4 }>
				<RouterLinkSummaryButton title={ __( 'Details' ) } to="/me/security" />
			</VStack>
		</PageLayout>
	);
}

export default Security;