Nhảy tới nội dung

Page

Page component: Component wrapper nội dung trang

Properties

Page

NameTypeDefaultDescription
childrenReactNode

Nội dung trang

resetScrollbooleantrue

Scroll 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>
  );
}