mirror of
https://github.com/Steffo99/bluelib.git
synced 2024-12-24 04:24:21 +00:00
49 lines
765 B
Markdown
49 lines
765 B
Markdown
|
A **panel** which splits horizontally the contained panels into multiple columns of the same size (if possible).
|
||
|
|
||
|
```jsx
|
||
|
import Bluelib from "../Bluelib";
|
||
|
import Box from "./index";
|
||
|
|
||
|
<Bluelib>
|
||
|
<Box>
|
||
|
1 / 1
|
||
|
</Box>
|
||
|
|
||
|
<Split>
|
||
|
<Box>
|
||
|
1 / 2
|
||
|
</Box>
|
||
|
<Box>
|
||
|
2 / 2
|
||
|
</Box>
|
||
|
</Split>
|
||
|
|
||
|
<Split>
|
||
|
<Box>
|
||
|
1 / 3
|
||
|
</Box>
|
||
|
<Box>
|
||
|
2 / 3
|
||
|
</Box>
|
||
|
<Box>
|
||
|
3 / 3
|
||
|
</Box>
|
||
|
</Split>
|
||
|
|
||
|
<Split>
|
||
|
<Box>
|
||
|
1 / 4
|
||
|
</Box>
|
||
|
<Box>
|
||
|
2 / 4
|
||
|
</Box>
|
||
|
<Box>
|
||
|
3 / 4
|
||
|
</Box>
|
||
|
<Box>
|
||
|
4 / 4
|
||
|
</Box>
|
||
|
</Split>
|
||
|
</Bluelib>
|
||
|
```
|