Box
Box là component giúp bao bọc các element giúp thêm khoảng cách giữa các element một cách dễ dàng theo spacing system của Zalo Mini App.
Ngoài ra box còn hỗ trợ tạo nhanh Flex Layout.
Properties
Example
import React from "react";
import { Page, Box, Button } from "zmp-ui";
export default function HomePage() {
return (
<Box mt={1}>
<Button size="large">Button</Button>
</Box>
<Box mt={10}>
<Button size="large">Button</Button>
</Box>
);
}