Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { __ } from '@wordpress/i18n';
import { PageHeader } from '../../components/page-header';
import PageLayout from '../../components/page-layout';
function BillingHistory() {
return (
<PageLayout size="small" header={ <PageHeader title={ __( 'Billing History' ) } /> }>
<div>Billing history content will go here</div>
</PageLayout>
);
}
export default BillingHistory;