JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 40
  • Score
    100M100P100Q58396F
  • License MIT

カレンダーピッカーのReactコンポーネント

Package Exports

  • react-ja-date-picker

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-ja-date-picker) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

React ja Date Picker

Build Status npm

日本語に対応したカレンダーピッカーのReactコンポーネントです。

DEMO

使い方

ブラウザの場合はBrowserifywebpackrollupなどを使ってスクリプトにバンドルしてください。

install

$ npm install react react-dom prop-types react-ja-date-picker --save

static import with JSX

import React      from 'react'
import { render } from 'react-dom'
import DatePicker from 'react-ja-date-picker'

render(
  <DatePicker />,
  document.getElementById('app')
)

development

$ git clone git@github.com:ai-ot/react-ja-date-picker.git
$ cd react-ja-date-picker
$ npm install
$ npm test  
$ npm run build
$ npm start

release (for commiters)

$ npm version patch -m"Release note"