A simple React hook to detect AdBlock
npm install use-adblock-detect
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.