40 lines
683 B
Markdown
40 lines
683 B
Markdown
# react-native-jecnaapi
|
|
|
|
JecnaAPI bridge for React Native
|
|
|
|
## Installation
|
|
|
|
|
|
```sh
|
|
npm install react-native-jecnaapi react-native-nitro-modules
|
|
|
|
> `react-native-nitro-modules` is required as this library relies on [Nitro Modules](https://nitro.margelo.com/).
|
|
```
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
```js
|
|
import { multiply } from 'react-native-jecnaapi';
|
|
|
|
// ...
|
|
|
|
const result = multiply(3, 7);
|
|
```
|
|
|
|
|
|
## Contributing
|
|
|
|
- [Development workflow](CONTRIBUTING.md#development-workflow)
|
|
- [Sending a pull request](CONTRIBUTING.md#sending-a-pull-request)
|
|
- [Code of conduct](CODE_OF_CONDUCT.md)
|
|
|
|
## License
|
|
|
|
MIT
|
|
|
|
---
|
|
|
|
Made with [create-react-native-library](https://github.com/callstack/react-native-builder-bob)
|