12 lines
193 B
TypeScript
12 lines
193 B
TypeScript
import {View, Text} from 'react-native'
|
|
import React from 'react'
|
|
|
|
const Cards = () => {
|
|
return (
|
|
<View>
|
|
<Text>Cards</Text>
|
|
</View>
|
|
)
|
|
}
|
|
export default Cards
|