Nhảy tới nội dung
Phiên bản: 1.7.0

Page component: Component wrapper nội dung trang

Properties

Page

NameTypeDefaultDescription
childrenReactNodeNội dung trang
resetScrollbooleantrueScroll lên đầu trang khi chuyển trang khi dùng với react-router
hideScrollbarbooleanfalseẨ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>
  );
}