Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

zmp-ui

Package Overview
Dependencies
Maintainers
3
Versions
126
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zmp-ui

Zalo Mini App framework

  • 1.4.1-rc.2
  • npm
  • Socket score

Version published
Weekly downloads
539
decreased by-10.32%
Maintainers
3
Weekly downloads
 
Created
Source

Giới thiệu

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 và tạo được giao diện thân thiện với người dùng hơn.

zaui demo 1

ZaUI Components cung cấp hầu hết các component cơ bản cần thiết cho một ứng dụng Mini App và sẽ được cập nhật liên tục theo Design System của Zalo Mini App Team. Bạn có thể tham khảo tài liệu thiết kế tại đây.

zaui demo 2

Tài liệu

Truy cập Zalo Mini App để xem hướng dẫn cụ thể tích hợp thư viện vào mini app

Cài đặt

npm install zmp-ui

Sử dụng

import React from 'react';
import { Button, Page } from 'zmp-ui';

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

Thêm stylesheets:

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

Trải nghiệm

Vui lòng sử dụng Zalo quét mã QR Code dưới đây để trải nghiệm thử ZaUI Components.

<img style={{display: "block", margin:"auto"}} width="175" height="175" src="https://logo-mapps.zdn.vn/qrcode/2d48c8626c278579dc36.png"/>

Keywords

FAQs

Package last updated on 21 Oct 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc