Skip to content

Latest commit

 

History

History
72 lines (50 loc) · 2.21 KB

README.md

File metadata and controls

72 lines (50 loc) · 2.21 KB

react-uikit

react-uikit and the documetation is still in development

With react-uikit you can use the css framework uikit with react.

The main objective of react-uikit is: to use uikit with react writing the less code possible while using all the feature that uikit has.

The documentation is here

What can you do?

common

elements

layout

navigation

javascript

How to install?

npm install reactuikit

How to use?

var reactuikit = require('reactuikit')

reactuikit will get a object with all the elements(button,icon,...)

For example, we are going to make a button element.

var reactuikit = require('reactuikit');
var React = require('react');
var ReactDOM = require('react-dom');

ReactDOM.render(React.createElement(reactuikit.button,null),document.getElementById('test'));