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

10 lines
374 B
JavaScript

import { assertSlots } from '@fluentui/react-utilities';
import { renderPopoverSurface_unstable } from '@fluentui/react-popover';
/**
* Render the final JSX of PopoverSurface
*/ export const renderTeachingPopoverSurface_unstable = (state)=>{
assertSlots(state);
// For now we are just extending the base surface
return renderPopoverSurface_unstable(state);
};