Teclib’ is an open source software editor that offers a vast range of fully integrated open source technology packages, to better respond to business needs.
Visit our Website Teclib'.
- Synopsis
- Build Status
- Installation
- Code examples
- Documentation
- Versioning
- Contact
- Contribute
- Copying
A React wrapper around WinJS's controls. Implemented using the technique described on this WinJS wiki page.
Release channel | Beta Channel |
---|---|
npm install react-winjs --save
Include WinJS 4.4 on your page. For example:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/winjs/4.4.0/css/ui-dark.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/winjs/4.4.0/js/base.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/winjs/4.4.0/js/ui.js"></script>
Then require react-winjs
and use it:
var React = require('react');
var ReactDOM = require('react-dom');
var ReactWinJS = require('react-winjs');
var App = React.createClass({
render: function () {
return <ReactWinJS.Rating maxRating={3} />;
}
});
ReactDOM.render(<App />, document.getElementById("app"));
We maintain a detailed documentation of the project on the Website, check the Development and How-tos sections.
You can also check the live examples.
In order to provide transparency on our release cycle and to maintain backward compatibility, Teclib' is maintained under the Semantic Versioning guidelines. We are committed to following and complying with the rules, the best we can.
See the tags section of our GitHub project for changelogs for each release version. Release announcement posts on the official Teclib' blog contain summaries of the most noteworthy changes made in each release.
You can contact us through any of our channels, check our Contact section.
Want to file a bug, contribute some code, or improve documentation? Excellent! Read up on our guidelines for contributing and then check out one of our issues in the Issues Dashboard.