use-adblock-detect
v1.0.0
Published
A simple React hook to detect AdBlock
Downloads
9
Readme
use-text-fit
A simple React hook to detect AdBlock
Install
npm install use-adblock-detect
Usage
import useAdblockDetect from 'use-adblock-detect';
function Page() {
const detected = useAdblockDetect();
return <main>
{detected && <h1>Please disable adblock</h1>}
</main>;
}
The hook returns a boolean that determines whether Adblock was detected on the user's browser.