import { XStack, XStackProps, YStack, YStackProps, withStaticProperties } from 'tamagui' const KVTableWrapper = (props: YStackProps) => { return } const KVTableRow = (props: XStackProps) => { return ( ) } const KVTableKey = (props: YStackProps) => { return ( ) } const KVTableValue = (props: XStackProps) => { return ( ) } /** * simple key-value table for displaying info */ export const KVTable = withStaticProperties(KVTableWrapper, { Row: KVTableRow, Key: KVTableKey, Value: KVTableValue, })