UNPKG

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