react-lucky-box
v0.2.0
Published
Draw lots from React prop
Downloads
7
Readme
React Lucky Box
Draw lots from React prop
Example
Go to live example or
Install
npm install react-lucky-box --save
Example
import React, { Component } from 'react'
import LuckyBox from 'react-lucky-box'
const lots = ['apple', 'banana', 'lemon']
class App extends Component {
render() {
return (
<LuckyBox lots={lots}>
{
({ lot, draw }) => (
<div>
<div>You got {lot}</div>
<button onClick={() => draw()}>Redraw</button>
</div>
)
}
</LuckyBox>
)
}
}