Box Utils
⚠️
This page is under construction.
Box utils help you to create vertical and horizontal boxes in the player.
Usage
Import the components from the NarraLeaf-React library.
import { VBox, HBox } from "narraleaf-react";
And use them in your components.
<Player ...>
<HBox>
<div>{/* Quick menu item 1 */}</div>
<div>{/* Quick menu item 2 */}</div>
<div>{/* Quick menu item 3 */}</div>
</HBBox>
</Player>
Components
VBox
Create a vertical box.
HBox
Create a horizontal box.