Private
Public Access
1
0
Files
power-apps-codeapps-blog-part2/node_modules/@fluentui/react-teaching-popover/lib/components/TeachingPopoverTrigger/useTeachingPopoverTrigger.js

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;
};