import React from "react"; import { ActivityIndicator, ActivityIndicatorProps, StyleSheet, View } from "react-native"; import { Provider } from "./context"; export const Loader: React.FC = ({ children, ...props }) => ( {children} ); const styles = StyleSheet.create({ indicator: { position: "absolute", height: "100%" }, loader: { alignItems: "center", justifyContent: "center" } });