react-summer-wars-world-clock
v0.1.1
Published
React Component of World Clock in Summer Wars
Downloads
3
Maintainers
Readme
react-summer-wars-world-clock
React Component of World Clock in Summer Wars
| branch | Travis status|
| --- | --- |
| master
| |
| develop
| |
NOTE: The Original Author
The original project is located in gist shimizu/fde15aa8cf734f1219f8 created by @shimizu.
Here, https://shimz.me/blog/d3-js/4360, is a blog post about the original project. Thank your very much, @shimizu!
So I'm a just guy who packaged it into a react component.
Install
npm install -S react-summer-wars-world-clock
Usage
Here is very simple jsx.
import React from 'react'
import WorldClock from 'react-summer-wars-world-clock'
import ReactDOM from 'react-dom';
class App extends React.Component {
constructor(props){
super(props)
}
render() {
return (
<div>
<WorldClock />
</div>
)
}
}
Example
Here is an example project to use this component.
https://github.com/nwtgck/react-summer-wars-world-clock-example