Files
bsky-social-app/src/components/StarterPack/StarterPackCard.tsx
T
2024-06-03 09:06:32 -07:00

14 lines
242 B
TypeScript

import React from 'react'
import {View} from 'react-native'
import {atoms as a} from '#/alf'
import {Text} from '#/components/Typography'
export function StarterPackCard() {
return (
<View>
<Text>Hello!</Text>
</View>
)
}