Remove payments API routing initialization
[ProtonMail-WebClient.git] / packages / components / containers / authentication / Provider.tsx
bloba06d09fb1a7b4e7e51d2e6beb70c982489255c1f
1 import type { ReactNode } from 'react';
3 import type { PrivateAuthenticationStore, PublicAuthenticationStore } from '../app/interface';
4 import AuthenticationContext from './authenticationContext';
6 export interface Props {
7     children?: ReactNode;
8     store: PrivateAuthenticationStore | PublicAuthenticationStore;
11 const AuthenticationProvider = ({ store, children }: Props) => {
12     return <AuthenticationContext.Provider value={store}>{children}</AuthenticationContext.Provider>;
15 export default AuthenticationProvider;