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