You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
BOB_PARTY/bob_party/components/skinAvatar.tsx

13 lines
333 B

import { FC, ReactNode } from "react"
import { Button, Image, Text, View } from "react-native"
import { Skin } from "../core/Skin"
/*
export const SkinComponent : FC<{skin: Skin, children: ReactNode}> = ({skin, children}) => {
return <View>
<Image source={{uri: skin.source}}/>
<Text>{t}</Text>
</View>
}
*/