react-block-full-ui
v0.0.4
Published
This component Block Full Ui
Downloads
5
Maintainers
Readme
React Block Full Ui
Usage
import React from 'react';
import BlockUi from 'react-block-full-ui'
class Fancy extends React.Component {
constructor(props){
this.state({loading:false})
}
render() {
return (
<div>
<BlockUi show={this.state.loading} />
This is so Fancy!
</div>
);
}
}
export default Fancy;