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

App là component chính chứa toàn bộ nội dung, cài đặt chung của ứng dụng. Những Component trong App có thể sử dụng chung các context và hook được cung cấp sẵn.

Properties

App

NameTypeDefaultDescription
themeThemeTùy chỉnh theme cho các component trong App

Type

Theme

NameDescription
"dark"Theme dark
"light"Theme light

Example

import React, { useEffect, useRef, useCallback } from "react";
import { Page, useTheme } from "zmp-ui";

function HomePage(props) {
  const { title, back } = props;
  const pageRef = useRef(null);
  const [theme] = useTheme();

  return (
    <div
      style={{
        padding: "16px",
        margin: "16px",
        background: theme !== "dark" ? "#FFFFFF" : "#141415",
        borderRadius: "8px",
        marginBottom: "24px",
      }}
    >
      <p>
        ZaUI Components là bộ UI Components được thiết kế theo chuẩn mobile,
        giúp bạn rút ngắn thời gian phát triển ứng dụng
      </p>
    </div>
  );
}

export default HomePage;