File size: 382 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 |
import { __ } from '@wordpress/i18n';
import { PageHeader } from '../../components/page-header';
import PageLayout from '../../components/page-layout';
export default function ActiveSubscriptions() {
return (
<PageLayout size="small" header={ <PageHeader title={ __( 'Active Subscriptions' ) } /> }>
<div>Active subscriptions content will go here</div>
</PageLayout>
);
}
|