import type { ReactNode } from 'react'; import { View, StyleSheet } from 'react-native'; import { ThemedText } from './themed-text'; import { ThemedView } from './themed-view'; import { Spacing } from '@/constants/theme'; type HintRowProps = { title?: string; hint?: ReactNode; }; export function HintRow({ title = 'Try editing', hint = 'app/index.tsx' }: HintRowProps) { return ( {title} {hint} ); } const styles = StyleSheet.create({ stepRow: { flexDirection: 'row', justifyContent: 'space-between', }, codeSnippet: { borderRadius: Spacing.two, paddingVertical: Spacing.half, paddingHorizontal: Spacing.two, }, });