Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
export default function UXPinWrapper({children}) {
return React.createElement('div', {
// Simulate default 'body' styles
style: {
color: tokens.colorInk,
fontFamily: tokens.fontStackBase,
webkitFontSmoothing: 'antialiased',
textRendering: 'optimizeLegibility',
},
}, [React.createElement(AppProvider, {theme, i18n: {}}, children)]);
}