We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 780d232 commit 7477288Copy full SHA for 7477288
README.md
@@ -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