Skip to content

Commit 7477288

Browse files
author
Shamin Meerankutty
authored
Added a readme file
1 parent 780d232 commit 7477288

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# react-fullscreen-loading
2+
Minimal fullscreen loading for react
3+
4+
## Installation
5+
6+
```
7+
npm install --save react-fullscreen-loading
8+
```
9+
10+
## Example
11+
12+
```javascript
13+
import React from 'react';
14+
import Loading from 'react-fullscreen-loading';
15+
16+
class App extends React.Component {
17+
render() {
18+
return(
19+
<Loading loading background="#2ecc71" loaderColor="#3498db" />
20+
)
21+
}
22+
}
23+
24+
export default App;
25+
```

0 commit comments

Comments
 (0)