Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save night-fury-rider/074a7839a85178afadb16523cf119154 to your computer and use it in GitHub Desktop.
Save night-fury-rider/074a7839a85178afadb16523cf119154 to your computer and use it in GitHub Desktop.
Interface for React Native Component Props
import {StyleProp, ViewStyle} from 'react-native';
interface IInputProps {
inputValue: string | number;
handleChange?: (updatedValue: string) => void;
inputLabel?: string;
customStyle?: StyleProp<ViewStyle>;
}
export type {IInputProps};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment