decloak-react
v1.1.1
Published
An incognito detection hook for React. 4KB when gzipped, works with Chrome 76+, Firefox, IE, and Safari 12.
Downloads
3
Readme
decloak-react
An incognito detection hook for React. 4KB when gzipped, works with Chrome 76+, Firefox, IE, and Safari 12.
Live Demo
https://codesandbox.io/s/decloak-react-demo-7opsh
Installation
Install with
yarn add decloak-react
npm install decloak-react
Usage
function App() {
const state = useIsPrivateMode();
return state ? <p>Private</p> : <p>Not private</p>;
}