Skip to content

ninsau/mui-backdrop-component

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mui-backdrop-component

A simple backdrop component put together from material ui documentation.

Demo

Demo

View sample code on codesandbox.

How to use

Install

1. npm i material-ui-backdrop-component --save

2. Import backdrop component inside react

import { BackdropComponent } from 'material-ui-backdrop-component'

3. Call the backdrop function

Inside your render or return

<BackdropComponent />

4. Sample code

import BackdropComponent from "material-ui-backdrop-component";

export default function App() {
  return (
    <>
      <BackdropComponent />
    </>
  );
}