Components
Simple Expo component with nested local utilities and npm dependencies.
Loading preview...
import { StyleSheet, View } from "react-native"
import SimpleGraphCard from "@/components/ui/expo-simple-graph-e2e-20260604-001"
import { buildShowcaseProps } from "../components/ui/expo-simple-graph-e2e-20260604-001-utils/buildShowcaseProps"
export default function ShowcaseDemo() {
return (
<View style={styles.screen}>
<SimpleGraphCard {...buildShowcaseProps()} />
</View>
)
}
const styles = StyleSheet.create({
screen: {
flex: 1,
alignItems: "center",
justifyContent: "center",
padding: 24,
backgroundColor: "#F8FAFC",
},
})