Private
Public Access
1
0
Files

14 lines
496 B
JavaScript

import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "@fluentui/react-jsx-runtime/jsx-runtime";
import { assertSlots } from '@fluentui/react-utilities';
/**
* Render the final JSX of ToastBody
*/ export const renderToastBody_unstable = (state)=>{
assertSlots(state);
return /*#__PURE__*/ _jsxs(_Fragment, {
children: [
/*#__PURE__*/ _jsx(state.root, {}),
state.subtitle ? /*#__PURE__*/ _jsx(state.subtitle, {}) : null
]
});
};