Skip to content
This repository was archived by the owner on Feb 21, 2023. It is now read-only.

Commit 5b1711a

Browse files
committed
docs: deprecation-notice
1 parent a46ead7 commit 5b1711a

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
> Deprecation Notice: This package is no longer supported. Please switch to [@availity/block-ui](https://www.npmjs.com/package/@availity/block-ui).
2+
13
[![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)
24
# react-block-ui
35
Easy way to block the user from interacting with your UI.

docs/lib/UI/Layout.js

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
import React from 'react';
22
import Helmet from 'react-helmet';
3+
import { Provider } from 'react-redux';
4+
import { Alert } from 'reactstrap';
35
import Footer from './Footer';
46
import Nav from './Nav';
5-
import { Provider } from 'react-redux'
67
import createStore from '../examples/ReduxStore';
78

89
const store = createStore({});
@@ -15,9 +16,13 @@ export default (props) => {
1516
title="Block the user from interacting with your UI"
1617
defaultTitle="Block the user from interacting with your UI"
1718
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>
2126
<Nav/>
2227
<Provider store={store}>
2328
{props.children}

0 commit comments

Comments
 (0)