Skip to content

Commit

Permalink
Reverting basic story back to master
Browse files Browse the repository at this point in the history
  • Loading branch information
wootencl committed Nov 13, 2018
1 parent 104a91d commit 1aa3449
Showing 1 changed file with 12 additions and 15 deletions.
27 changes: 12 additions & 15 deletions stories/size/basic.js
Expand Up @@ -23,21 +23,18 @@ export default class Size extends React.Component {

render() {
return (
<div style={{ transform: 'scale(0.5)' }}>
<Resizable
scale={0.5}
style={style}
size={this.state}
onResizeStop={(e, direction, ref, d) => {
this.setState({
width: this.state.width + d.width,
height: this.state.height + d.height,
});
}}
>
001
</Resizable>
</div>
<Resizable
style={style}
size={this.state}
onResizeStop={(e, direction, ref, d) => {
this.setState({
width: this.state.width + d.width,
height: this.state.height + d.height,
});
}}
>
001
</Resizable >
)
}
}

0 comments on commit 1aa3449

Please sign in to comment.