import { useEffect } from 'preact/hooks' declare const ethicalads: any type AdProps = { type: 'text' | 'image', id: string, } export function Ad({ type, id }: AdProps) { if (type === 'text') { return
Minecraft Live Bingo logo
Bingo! Generate your own random bingo card to fill out as you watch Minecraft Live 2022!
} useEffect(() => { document.getElementById('ad-placeholder')?.remove() if ('ethicalads' in window) { ethicalads.load() } }, []) return
}