Package Exports
- @codoonfxd/crn-elements
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@codoonfxd/crn-elements) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@codoonfxd/crn-elements
用于 React Native 的组件库,该组件库使用 Typescript 开发,提供了更方便的类型支持。
快速开始
安装
# 使用npm
npm install --save @codoonfxd/crn-elements
# 使用yarn
yarn add @codoonfxd/crn-elements
使用
import { Button } from '@codoonfxd/crn-elements';
export default () => {
return <Button title="按钮" />;
};