import tw from "../lib/tailwind";
import React from "react";
import { KeyboardAvoidingView, Platform, ScrollView, View, RefreshControl } from "react-native";
import { KeyboardAwareScrollView } from "react-native-keyboard-aware-scroll-view";
import { useRefresh } from "../lib/refresh-context";
import type { ReactParentComponent } from '@packages/shared';
function AppContainer(props: ReactParentComponent) {
const { children } = props;
const { refreshAll } = useRefresh();
return (
}
automaticallyAdjustKeyboardInsets={true}
>
{children}
);
}
export default AppContainer;