nicecode-v2/packages/meta
2024-05-31 17:14:31 +08:00
..
es feat(zhst/biz,zhst/meta): 穿梭框完成,新增meta组件 2024-05-31 16:22:09 +08:00
src feat(zhst/biz,zhst/meta): 穿梭框完成,新增meta组件 2024-05-31 16:22:09 +08:00
.fatherrc.ts feat: 第一次打包可用版本上线 2024-02-18 16:13:52 +08:00
CHANGELOG.md feat(all): update version 2024-05-31 17:14:31 +08:00
package.json feat(all): update version 2024-05-31 17:14:31 +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>
  )
}