1.1.6 • Published 2 years ago

react-uiblocker-loading v1.1.6

Weekly downloads
-
License
-
Repository
github
Last release
2 years ago

Getting Started with Create React App

Installation

npm install react-uiblocker --save

Usage

import React from "react";
import UIBlocker from "react-uiblocker";

export default function App() {
  return (
    <UIBlocker visible={true} message="Loading...">
      <h1>React</h1>
      <h5>App</h5>
      <h5>Initial</h5>
    </UIBlocker>
  );
}