/** * WordPress dependencies */ /** * External dependencies */ import type { SiteId } from '@nab/types'; /** * Internal dependencies */ import './style.scss'; import { Plan } from '../plan'; import { AccountInfo } from '../account-info'; import { Sites } from '../sites'; import { Billing } from '../billing'; import { LoadingModal } from '../loading-modal'; export type LayoutProps = { readonly siteId: SiteId; }; export const Layout = ( { siteId }: LayoutProps ): JSX.Element => (