@viktorvojtek/react-native-simple-components
Version:
Collection of essential UI components based on react-native components
10 lines (9 loc) • 391 B
TypeScript
import React from 'react';
import type { ReactNode } from 'react';
import { ScrollViewProps as ScrollViewBaseProps, ViewProps, ViewStyle } from 'react-native';
type Props = {
children: ReactNode;
} & ViewStyle & ScrollViewBaseProps & Pick<ViewProps, 'style'>;
export type ScrollViewProps = Props;
declare const ScrollView: (props: Props) => React.JSX.Element;
export default ScrollView;