marketing-components-pro
TypeScript icon, indicating that this package has built-in type declarations

1.1.1 • Public • Published

marketing-components 「自带概率逻辑的营销组件库」

NPM version NPM downloads

docs

Usage

安装:

pnpm add marketing-components-pro

使用:

import { Lottery } from 'marketing-components-pro';

const data = [
  {
    id: 1,
    name: '代金券1',
  },
  {
    id: 2,
    name: '代金券2',
  },
  {
    id: 3,
    name: '代金券3',
  },
  {
    id: 4,
    name: '代金券4',
  },
  {
    id: 5,
    name: '代金券5',
  },
  {
    id: 6,
    name: '代金券6',
  },
  {
    id: 7,
    name: '代金券7',
  },
  {
    id: 8,
    name: '代金券8',
  },
];

const callback = (luckyRewards) => {
  console.log(luckyRewards.name);
};

export default () => <Lottery data={data} callback={callback} />;

Options

TODO

Development

# install dependencies
$ pnpm install

# develop library by docs demo
$ pnpm start

# build library source code
$ pnpm run build

# build library source code in watch mode
$ pnpm run build:watch

# build docs
$ pnpm run docs:build

# check your project for potential problems
$ pnpm run doctor

LICENSE

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i marketing-components-pro

Weekly Downloads

1

Version

1.1.1

License

MIT

Unpacked Size

35.4 kB

Total Files

20

Last publish

Collaborators

  • gongking