https://github.com/ninsau/mui-backdrop-component
A simple backdrop component put together from material ui documentation
https://github.com/ninsau/mui-backdrop-component
backdrop backdrops material-ui reactjs-components
Last synced: 3 months ago
JSON representation
A simple backdrop component put together from material ui documentation
- Host: GitHub
- URL: https://github.com/ninsau/mui-backdrop-component
- Owner: ninsau
- License: mit
- Created: 2021-08-03T14:05:24.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-08-07T02:06:13.000Z (almost 4 years ago)
- Last Synced: 2025-01-18T14:34:35.246Z (4 months ago)
- Topics: backdrop, backdrops, material-ui, reactjs-components
- Language: JavaScript
- Homepage: https://csb-wwuwg-ibkntu1vw-ninsau.vercel.app/
- Size: 405 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mui-backdrop-component
A simple backdrop component put together from material ui documentation.## Demo
[Demo](https://csb-wwuwg-ibkntu1vw-ninsau.vercel.app/)
View sample code on [codesandbox](https://codesandbox.io/s/mui-backdrop-wwuwg?file=/src/backdrop.js).
## 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```
```
### 4. Sample code
```
import BackdropComponent from "material-ui-backdrop-component";export default function App() {
return (
<>
>
);
}
```