Encrypted-Chat-Client/app/modal.tsx
2024-12-15 06:40:35 -08:00

23 lines
615 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Anchor, Paragraph, View, XStack } from 'tamagui'
export default function ModalScreen() {
return (
<View flex={1} alignItems="center" justifyContent="center">
<XStack gap="$2">
<Paragraph ta="center">Made by</Paragraph>
<Anchor col="$blue10" href="https://twitter.com/natebirdman" target="_blank">
@natebirdman,
</Anchor>
<Anchor
color="$purple10"
href="https://github.com/tamagui/tamagui"
target="_blank"
rel="noreferrer"
>
give it a
</Anchor>
</XStack>
</View>
)
}