0.0.1 • Published 9 years ago

react-year v0.0.1

Weekly downloads
22
License
MIT
Repository
github
Last release
9 years ago

React <Year>

A react-component to format and display a year.

Getting Started

  • Install with NPM - npm install --save react-year

Usage

var React = require('react');
var Year  = require('react-year');

var Component = React.createClass({
  render: function () {
    return (
      <Year format="numeric" date="13/06/1982"></Year>
    );
  }
});

Options

PropertyTypeArgumentValuesDefaultDescription
datestring<optional>RFC2822/ISO8601todayRFC2822/ISO8601 format.
formatstring<optional>numeric, 2-digitnumericrepresentation format.

Developing

react-year is built using ES6. Run the following task to compile the src/ into dist/.

npm run build

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality.

License

Copyright (c) 2015 Jason Bellamy
Licensed under the MIT license.