Page
Page component: Component wrapper nội dung trang
Properties
Page
Name | Type | Default | Description |
---|---|---|---|
children | ReactNode | Nội dung trang | |
resetScroll | boolean | true | Scroll lên đầu trang khi chuyển trang khi dùng với react-router |
hideScrollbar | boolean | false | Ẩn thanh scroll bar |
Example
import React from 'react'; import { Page, Input } from 'zmp-ui'; export default function HomePage(props) { return ( <Page className='section-container' hideScrollbar={true}> <Input label='Label' helperText='Helper text' /> </Page> ); }