react-native-a11y
Version:
Improvements of a11y for ReactNative, this library improve work with reader and keyboard focus and reader in general.
11 lines (8 loc) • 337 B
text/typescript
import type { HostComponent, ViewProps } from 'react-native';
import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';
export interface NativeProps extends ViewProps {
accesibility: string;
}
export default codegenNativeComponent<NativeProps>(
'RCA11yPaneView'
) as HostComponent<NativeProps>;