10 lines
348 B
JavaScript
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;
|
|
};
|