import { forwardRef } from 'react' import { ScrollView, TamaguiElement, YStack, YStackProps, withStaticProperties } from 'tamagui' /** * this is pretty straightforward on web - check FormWrapper.native */ const Wrapper = forwardRef(function Wrapper(props, ref) { return ( ) }) const Body = forwardRef(function Body(props, ref) { return ( ) }) const Footer = forwardRef(function Footer(props, ref) { return }) export const FormWrapper = withStaticProperties(Wrapper, { Body, Footer, })