UNPKG

react-native-blur-background

Version:
21 lines (16 loc) 319 B
import React from 'react'; import {StyleSheet, View} from 'react-native'; import BlurBackground from './dist'; const App = () => { return ( <View style={styles.container}> <BlurBackground /> </View> ); }; const styles = StyleSheet.create({ container: { flex: 1, }, }); export default App;