diff --git a/packages/react-simulator-renderer/src/builtin-components/slot.tsx b/packages/react-simulator-renderer/src/builtin-components/slot.tsx index 164304cb7..2dd44b978 100644 --- a/packages/react-simulator-renderer/src/builtin-components/slot.tsx +++ b/packages/react-simulator-renderer/src/builtin-components/slot.tsx @@ -51,7 +51,7 @@ class Slot extends Component { render() { const { children } = this.props; - return
{children}
; + return <>{children}; } }