import React from "react"; import { Text, View } from "react-native"; export interface ExampleComponentProps { /** * Optional custom text to display */ text?: string; } /** * An example component that demonstrates system-based dark/light mode functionality */ export const ExampleComponent: React.FC = ({ text = "Hello World", }) => { return ( {text} ); };