aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/layout/CurrentIdentityContext.tsx
blob: 78f2f263f8106be6995db534aee6b63e9706fd42 (plain) (blame)
1
2
3
4
5
6
import React from 'react';

import { CurrentIdentityQueryResult } from './CurrentIdentity.generated';

const Context = React.createContext(null as CurrentIdentityQueryResult | null);
export default Context;