6 lines
116 B
TypeScript
6 lines
116 B
TypeScript
import { User } from '@microsoft/microsoft-graph-types';
|
|
|
|
export interface AppContextState {
|
|
userProfile: User;
|
|
}
|