React components using Pure CSS.
npm install react-frankie-componentsReact is also required as a peer dependency.
The components documented below are exposed as CommonJS modules and can be accessed in the following ways:
// ES6
import { Menu, MenuItem } from 'react-frankie-components';
// CommonJS
var Menu = require('react-frankie-components').Menu;
// or
var Frankie = require('react-frankie-components');
var Menu = Frankie.Menu;
// Direct access to the module
var Menu = require('react-frankie-components/lib/Menu');