Files
imexmobile/components/loading-display/loading-display.component.js
2022-01-12 14:22:13 -08:00

12 lines
344 B
JavaScript

import React from "react";
import { View } from "react-native";
import { BarIndicator } from "react-native-indicators";
export default function LoadingDisplay({ count = 5 }) {
return (
<View style={{ flex: 1, alignContent: "center", justifyContent: "center" }}>
<BarIndicator count={count} color="dodgerblue" />
</View>
);
}