React
React 환경에서 Adrop Web SDK를 통해 광고를 연동하기 위한 가이드
3
Quick Start (5분 안에 첫 광고 확인하기)
Adrop 초기화하기
useEffect(() => {
const config: AdropConfig = {
appId: 'YOUR_APP_ID'
}
Adrop.observe(config)
}, [])1. data attributes로 광고 확인하기
<div data-adrop-unit='YOUR_UNIT_ID'/>2. renderAd 함수로 광고 확인하기
const ref = useRef<HTMLDivElement | null>(null)
useEffect(() => {
if (!ref.current) return
Adrop.instance().renderAd(ref.current)
}, [])
return <div ref={ref}/>Last updated