import { View, Text, Image, TouchableOpacity } from "react-native"; import { SimpleSwitch } from "./SimpleSwitch"; export const SwitchArea = ({ str, bool, setBool, falseImage, trueImage, falseText, trueText, children, }) => { return ( {str} {bool == "true" && children} ); };