import { View, Text, Image, TouchableOpacity } from "react-native"; import { SimpleSwitch } from "./SimpleSwitch"; export const TripleSwitchArea = ({ str, bool, setBool, firstItem: { firstImage, firstText, firstValue }, secondItem: { secondImage, secondText, secondValue }, thirdItem: { thirdImage, thirdText, thirdValue }, }) => { return ( {str} ); };