https://github.com/bebo/bebo-react
https://github.com/bebo/bebo-react
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bebo/bebo-react
- Owner: bebo
- License: mit
- Created: 2016-09-14T02:38:34.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-09-27T22:52:49.000Z (over 8 years ago)
- Last Synced: 2025-05-10T13:11:32.481Z (12 days ago)
- Language: JavaScript
- Size: 5.86 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bebo-react
A wrapper for the beboSDK in react
## Get it
```npm install bebo-react --save```
## Usage
```jsx
import React from 'react';
import BeboReact from './js/utils/bebo-react';
import App from './js/components/App';import './style.scss';
BeboReact.render(
,
document.getElementById('app'),
{
disableKeyboardDoneStrip: true
}
);
```