Outlook_Addin_LLM/node_modules/@fluentui/react-shared-contexts/lib/BackgroundAppearanceContext/BackgroundAppearanceContext.js

11 lines
335 B
JavaScript
Raw Normal View History

import * as React from 'react';
/**
* @internal
*/ export const BackgroundAppearanceContext = React.createContext(undefined);
/**
* @internal
*/ export const BackgroundAppearanceProvider = BackgroundAppearanceContext.Provider;
export function useBackgroundAppearance() {
return React.useContext(BackgroundAppearanceContext);
}