9 lines
165 B
TypeScript
9 lines
165 B
TypeScript
import { Text, View } from "react-native";
|
|
|
|
export default function Katalog() {
|
|
return (
|
|
<View>
|
|
<Text>Katalog</Text>
|
|
</View>
|
|
);
|
|
} |