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
function HomePage(props){
return (
<Page>
<Input label="Label" helperText="Helper text" />
</Page>
);
}