11 lines
362 B
JavaScript
11 lines
362 B
JavaScript
'use client';
|
|
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;
|
|
};
|