Nhảy tới nội dung
Phiên bản: 1.11.0
npm install zmp-ui

Sử dụng

HomePage.jsx
import React from "react";
import { Button } from "zmp-ui";

const HomePage = (props) => {
return <Button size='large'>Button</Button>;
};
export default HomePage;

Thêm stylesheets:

App.js
import React from "react";
import { createRoot } from "react-dom/client";
/**
* Thêm stylesheets chung
* Hoặc có thể thêm của từng component
*
* import "zmp-ui/button/styles/button.css";
*/
import "zmp-ui/zaui.css";

import HomePage from "./HomePage";

const root = createRoot(document.getElementById("app"));
root.render(React.createElement(HomePage));