Describe the bug
Pane children are not rendered with v3
To Reproduce
See codesandbox example: https://codesandbox.io/p/sandbox/sp59gp?file=%2Fsrc%2FApp.tsx%3A1%2C1-19%2C1
If you can't see that the code is just this, basically the "controlled" example code with a few tweaks
import { SplitPane, Pane } from "react-split-pane";
import { useState } from "react";
import "./styles.css";
export default function App() {
const [sizes, setSizes] = useState([300, 500]);
return (
<SplitPane onResize={setSizes} direction="vertical">
<Pane size={sizes[0]} minSize="200px">
<div>top</div>
</Pane>
<Pane size={sizes[1]}>
<div>bottom</div>
</Pane>
</SplitPane>
);
}
(Also the codesandbox project you suggest to fork is using the older 0.1.82 version, so should probably be updated.)
Expected behavior
The pane content should be rendered
Screenshots

Describe the bug
Pane children are not rendered with v3
To Reproduce
See codesandbox example: https://codesandbox.io/p/sandbox/sp59gp?file=%2Fsrc%2FApp.tsx%3A1%2C1-19%2C1
If you can't see that the code is just this, basically the "controlled" example code with a few tweaks
(Also the codesandbox project you suggest to fork is using the older 0.1.82 version, so should probably be updated.)
Expected behavior
The pane content should be rendered
Screenshots