Front: Remove RNP dependency

This commit is contained in:
Arthi-chaud
2022-10-07 10:02:20 +01:00
parent f8715beb79
commit 5f76cb6b54
3 changed files with 3 additions and 9 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
import { useTheme } from "native-base";
import { ActivityIndicator } from "react-native-paper";
import { Spinner } from "native-base";
const LoadingComponent = () => {
const theme = useTheme();
return <ActivityIndicator color={theme.colors.primary[500]}/>
return <Spinner color={theme.colors.primary[500]}/>
}
export default LoadingComponent;