10 lines
No EOL
174 B
JavaScript
10 lines
No EOL
174 B
JavaScript
import { View, Text } from 'react-native'
|
|
import React from 'react'
|
|
|
|
export default function Stats() {
|
|
return(
|
|
<View>
|
|
<Text>Stats</Text>
|
|
</View>
|
|
)
|
|
} |