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

12 lines
478 B
JavaScript

'use client';
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';