nicecode-v2/packages/meta
2024-06-12 18:09:06 +08:00
..
src feat(zhst/biz): 添加大图组件v2 2024-06-11 20:25:25 +08:00
.fatherrc.ts fix(tsconfig): 修改father build 2024-06-12 18:07:27 +08:00
CHANGELOG.md fix(tsconfig): 修改father build 2024-06-12 18:09:06 +08:00
package.json fix(tsconfig): 修改father build 2024-06-12 18:09:06 +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>
  )
}