react-resize
v0.4.0
Published
Screen complete and resizable for ReactJS
Downloads
46
Maintainers
Readme
react-resize
React component that wraps the child component in (a div with width / height matching that of the current / updated window size).
Example
npm install --save react react-dom react-resize
import React from 'react'
import { render } from 'react-dom'
import Resize from 'react-resize'
class App extends React.Component {
render() {
return (
<Resize>
Hello React Resize
</Resize>
)
}
}
render(<App/>, document.getElemenById('myApp'))
Autor
Carlos Cuatin [email protected]