import React, { Component } from 'react'; import { StyleSheet, View } from 'react-native'; import { PinchableBox } from '../../recipes/scaleAndRotate/index'; export default class Example extends Component { render() { return ( ); } } const styles = StyleSheet.create({ container: { flex: 1, }, });