Skip to content
2 changes: 0 additions & 2 deletions playground/components/SplitWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ interface SplitWrapperProps {

// react-split should be replaced with a React 18 friendly library or CSS
const SplitWrapper = (props: SplitWrapperProps) => (
<>
<Split
style={{
width: '100%',
Expand All @@ -29,7 +28,6 @@ const SplitWrapper = (props: SplitWrapperProps) => (
>
{props.children}
</Split>
</>
);

export default SplitWrapper;