nicecode-v2/packages/meta
2024-05-29 14:43:41 +08:00
..
es fix(zhst/meta、zhst/biz、zhst/material): 修改图片标注组件 2024-05-16 18:02:10 +08:00
src feat(@zhst/map): 添加marker功能 2024-05-23 18:14:32 +08:00
.fatherrc.ts feat: 第一次打包可用版本上线 2024-02-18 16:13:52 +08:00
CHANGELOG.md feat(zhst/meta,zhst/map): zhst/map:拓展地图api,加入tools组件、cluster组价、marker组件 2024-05-29 14:43:41 +08:00
package.json feat(zhst/meta,zhst/map): zhst/map:拓展地图api,加入tools组件、cluster组价、marker组件 2024-05-29 14:43:41 +08:00
README.md fix: 新增message、popover、slider、card、calendar组件 2024-02-19 15:23:34 +08:00

介绍

原子组件,基于 @zhst/hooks、@zhst/func 开发。

安装

pnpm install @zhst/meta

使用

import React from 'react';
import { Button } from '@zhst/meta'

export default () => {
  return (
    <Button type="primary" onClick={() => console.log('ok')} >按我啊!</Button>
  )
}