Files
powerpoint-toolbox/node_modules/@fluentui/react-teaching-popover/lib/components/TeachingPopoverTrigger/useTeachingPopoverTrigger.js
T
2025-03-07 19:22:02 +01:00

10 lines
348 B
JavaScript

import { usePopoverTrigger_unstable } from '@fluentui/react-popover';
/**
* Create the state required to render TeachingPopoverTrigger.
*
* @param props - props from this instance of TeachingPopoverTrigger
*/ export const useTeachingPopoverTrigger_unstable = (props)=>{
const state = usePopoverTrigger_unstable(props);
return state;
};