import React, { Component } from 'react'; import { StyleSheet, View } from 'react-native'; import Interactable from '../../Interactable'; export default class SwipeableCard extends Component { render() { return ( ); } } const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', backgroundColor: 'white', }, card: { width: 300, height: 180, backgroundColor: 'red', borderRadius: 8, marginVertical: 6, }, });