Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 21 additions & 23 deletions playground/components/SplitWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,29 +7,27 @@ interface SplitWrapperProps {

// react-split should be replaced with a React 18 friendly library or CSS
const SplitWrapper = (props: SplitWrapperProps) => (
<>
<Split
style={{
width: '100%',
height: 'calc(100vh - 50px)',
minHeight: 'calc(100vh - 50px)',
display: 'flex',
background: '#f3f4f5',
}}
gutter={() => {
const gutter = document.createElement('div');
gutter.onmouseover = () => (gutter.style.cursor = 'ew-resize');
return gutter;
}}
gutterStyle={() => ({
backgroundColor: 'gray',
width: '7px',
})}
minSize={250}
>
{props.children}
</Split>
</>
<Split
style={{
width: '100%',
height: 'calc(100vh - 50px)',
minHeight: 'calc(100vh - 50px)',
display: 'flex',
background: '#f3f4f5',
}}
gutter={() => {
const gutter = document.createElement('div');
gutter.onmouseover = () => (gutter.style.cursor = 'ew-resize');
return gutter;
}}
gutterStyle={() => ({
backgroundColor: 'gray',
width: '7px',
})}
minSize={250}
>
{props.children}
</Split>
);

export default SplitWrapper;