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

11 lines
464 B
JavaScript

import * as React from 'react';
import { useTeachingPopover_unstable } from './useTeachingPopover';
import { renderTeachingPopover_unstable } from './renderTeachingPopover';
/**
* An extension class of Popover which defaults to withArrow and FocusTrap enabled.
*/ export const TeachingPopover = (props)=>{
const state = useTeachingPopover_unstable(props);
return renderTeachingPopover_unstable(state);
};
TeachingPopover.displayName = 'TeachingPopover';