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;