0.0.4 • Published 4 years ago

react-block-full-ui v0.0.4

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

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;