import { colors } from "@toss/tds-colors"; import { Button, List, ListRow, TextButton, Top } from "@toss/tds-mobile"; import { useInAppAds } from "../hooks/useInAppAds"; // TODO: 서비스를 출시하기 전에 앱인토스 콘솔에서 발급한 광고그룹ID로 변경해주세요. const TEST_INTERSTITIAL_ID = "ait-ad-test-interstitial-id"; const TEST_REWARDED_ID = "ait-ad-test-rewarded-id"; interface InAppAdsPageProps { onBack: () => void; } export function InAppAdsPage({ onBack }: InAppAdsPageProps) { const interstitial = useInAppAds(TEST_INTERSTITIAL_ID); const rewarded = useInAppAds(TEST_REWARDED_ID); return ( <> 인앱광고} subtitleBottom={ !interstitial.isSupported && ( 이 환경에서는 인앱 광고를 사용할 수 없어요. ) } /> } right={ } /> } right={ } /> ← 홈으로 ); }