import Text from "@/components/ui/Text"; import React, {forwardRef} from "react"; import {Image, View, ViewProps} from "react-native"; import BackButton from "@/components/BackButton"; import {Entypo} from "@expo/vector-icons"; export interface ProblemProps extends ViewProps{ picture: string; problem: string; description: string; information: string; isVisible?: boolean; } export default forwardRef (({className, ...Props}, ref) => { return ( {Props.problem} {Props.description} {Props.information} ); });