import AccountContextProvider from '../../Store/Account/account-context';
import CompaniesContextProvider from '../../Store/Companies/companies-context';
import FinancialsContextProvider from '../../Store/Financials/financials-context';
import ManageSubscriptionProvider from '../../Store/ManageSubscription/ManageSubscription-context';
import ManageSubscription from './ManageSubscription';

const ManageSubscriptionPage = (): JSX.Element => (
	<FinancialsContextProvider>
		<AccountContextProvider>
			<CompaniesContextProvider>
				<ManageSubscriptionProvider>
					<ManageSubscription />
				</ManageSubscriptionProvider>
			</CompaniesContextProvider>
		</AccountContextProvider>
	</FinancialsContextProvider>
);

export default ManageSubscriptionPage;
