UNPKG

react-native-admob-native-ads

Version:

A simple and robust library for creating & displaying Admob Native Ads in your React Native App using Native Views

20 lines (16 loc) 308 B
import React from "react"; import { StyleSheet, View } from "react-native"; const Wrapper = (props) => { return ( <View {...props} style={styles.container} /> ); }; export default Wrapper; const styles = StyleSheet.create({ container: { backgroundColor: 'transparent' } })