Skip to content

Commit

Permalink
chore: remove example
Browse files Browse the repository at this point in the history
  • Loading branch information
jpudysz committed Jan 30, 2025
1 parent f6204c2 commit fcce95c
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions expo-example/app/(tabs)/index.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
import { Link } from 'expo-router'
import React from 'react'
// @ts-ignore
import { NativeText } from 'react-native/Libraries/Text/TextNativeComponent'
// @ts-ignore
import View from 'react-native/Libraries/Components/View/ViewNativeComponent'
import { Pressable } from 'react-native'
import { Link } from 'expo-router'
import { Pressable, View, Text } from 'react-native'
import { StyleSheet } from 'react-native-unistyles'

export default function HomeScreen() {
Expand All @@ -15,14 +11,14 @@ export default function HomeScreen() {
return (
<View style={styles.container}>
<View style={styles.test}>
<NativeText style={styles.typography}>
<Text style={styles.typography}>
Hello world
</NativeText>
</Text>
<Link href="/explore" asChild>
<Pressable style={styles.button}>
<NativeText style={styles.typography}>
<Text style={styles.typography}>
Explore
</NativeText>
</Text>
</Pressable>
</Link>
</View>
Expand Down

0 comments on commit fcce95c

Please sign in to comment.