Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 365 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 365 Bytes

bebo-react

A wrapper for the beboSDK in react

Get it

npm install bebo-react --save

Usage

import React from 'react';
import BeboReact from './js/utils/bebo-react';
import App from './js/components/App';

import './style.scss';
BeboReact.render(
  <App />,
  document.getElementById('app'),
  {
    disableKeyboardDoneStrip: true
  }
);