UNPKG

react-native-nj-view-shot

Version:
15 lines (13 loc) 306 B
// @flow import React, { Component } from 'react'; import { View } from 'react-native'; export default class ViewShot extends Component { render() { const { children } = this.props; return ( <View collapsable={false} style={this.props.style}> {children} </View> ); } }