From 3ccdf0316e96cb52d995124233564f56ce3bd01b Mon Sep 17 00:00:00 2001 From: Julian Kobrynski Date: Fri, 27 Oct 2023 08:49:36 +0200 Subject: [PATCH] rename props import --- src/components/KeyboardAvoidingView/index.ios.tsx | 4 ++-- src/components/KeyboardAvoidingView/index.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/KeyboardAvoidingView/index.ios.tsx b/src/components/KeyboardAvoidingView/index.ios.tsx index 9bcc98f63655..fde4df6fc05b 100644 --- a/src/components/KeyboardAvoidingView/index.ios.tsx +++ b/src/components/KeyboardAvoidingView/index.ios.tsx @@ -3,9 +3,9 @@ */ import React from 'react'; import {KeyboardAvoidingView as KeyboardAvoidingViewComponent} from 'react-native'; -import Props from './types'; +import KeyboardAvoidingViewProps from './types'; -function KeyboardAvoidingView(props: Props) { +function KeyboardAvoidingView(props: KeyboardAvoidingViewProps) { // eslint-disable-next-line react/jsx-props-no-spreading return ; } diff --git a/src/components/KeyboardAvoidingView/index.tsx b/src/components/KeyboardAvoidingView/index.tsx index 3ce9e69ea0a6..cf3a5c5ebef7 100644 --- a/src/components/KeyboardAvoidingView/index.tsx +++ b/src/components/KeyboardAvoidingView/index.tsx @@ -3,9 +3,9 @@ */ import React from 'react'; import {View} from 'react-native'; -import Props from './types'; +import KeyboardAvoidingViewProps from './types'; -function KeyboardAvoidingView(props: Props) { +function KeyboardAvoidingView(props: KeyboardAvoidingViewProps) { const {behavior, contentContainerStyle, enabled, keyboardVerticalOffset, ...rest} = props; return ( // eslint-disable-next-line react/jsx-props-no-spreading