Private
Public Access
1
0
Files

10 lines
381 B
JavaScript

import { jsx as _jsx } from "@fluentui/react-jsx-runtime/jsx-runtime";
import { assertSlots } from '@fluentui/react-utilities';
/**
* Redefine the render function to add slots. Reuse the menugroupheader structure but add
* slots to children.
*/ export const renderMenuGroupHeader_unstable = (state)=>{
assertSlots(state);
return /*#__PURE__*/ _jsx(state.root, {});
};