14 lines
242 B
TypeScript
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>
|
|
)
|
|
}
|