UNPKG

289 BTypeScriptView Raw
1import * as React from 'react';
2import { Text, View } from 'react-native';
3
4export default class AdMobInterstitial extends React.Component<object> {
5 render() {
6 return (
7 <View>
8 <Text>AdMobInterstitial component not supported on the web</Text>
9 </View>
10 );
11 }
12}