Horizontal Groups
An example of a horizontal group of panes.
Anatomy
Here's a high-level structure of the example above:
<script lang="ts">
import { PaneGroup, Pane, PaneResizeHandle } from "paneforge";
</script>
<PaneGroup direction="horizontal">
<Pane defaultSize={50} />
<PaneResizeHandle />
<Pane defaultSize={50} />
</PaneGroup>