This repository was archived by the owner on Feb 21, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change
1
+ > Deprecation Notice: This package is no longer supported. Please switch to [ @availity/block-ui ] ( https://www.npmjs.com/package/@availity/block-ui ) .
2
+
1
3
[ ![ npm version] ( https://badge.fury.io/js/react-block-ui.svg )] ( https://badge.fury.io/js/react-block-ui ) [ ![ Build Status] ( https://travis-ci.org/Availity/react-block-ui.svg?branch=master )] ( https://travis-ci.org/Availity/react-block-ui ) [ ![ Coverage Status] ( https://coveralls.io/repos/github/Availity/react-block-ui/badge.svg?branch=master )] ( https://coveralls.io/github/Availity/react-block-ui?branch=master )
2
4
# react-block-ui
3
5
Easy way to block the user from interacting with your UI.
Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
2
import Helmet from 'react-helmet' ;
3
+ import { Provider } from 'react-redux' ;
4
+ import { Alert } from 'reactstrap' ;
3
5
import Footer from './Footer' ;
4
6
import Nav from './Nav' ;
5
- import { Provider } from 'react-redux'
6
7
import createStore from '../examples/ReduxStore' ;
7
8
8
9
const store = createStore ( { } ) ;
@@ -15,9 +16,13 @@ export default (props) => {
15
16
title = "Block the user from interacting with your UI"
16
17
defaultTitle = "Block the user from interacting with your UI"
17
18
meta = { [
18
- { "name" : "description" , "content" : "React Block UI - easy way to block the user from interacting with your UI." } ,
19
- { "property" : "og:type" , "content" : "article" }
20
- ] } />
19
+ { 'name' : 'description' , 'content' : 'React Block UI - easy way to block the user from interacting with your UI.' } ,
20
+ { 'property' : 'og:type' , 'content' : 'article' } ,
21
+ ] }
22
+ />
23
+ < Alert color = "warning" className = "mb-0 text-center" >
24
+ Deprecation Notice: This package is no longer supported. Please switch to < a className = "alert-link" href = "https://www.npmjs.com/package/@availity/block-ui" > @availity/block-ui</ a > .
25
+ </ Alert >
21
26
< Nav />
22
27
< Provider store = { store } >
23
28
{ props . children }
You can’t perform that action at this time.
0 commit comments