** Major Change**. Removed unknown dependencies, and reset project to a new start state. See MD file for instructions.
This commit is contained in:
12
components-old/loading-display/loading-display.component.jsx
Normal file
12
components-old/loading-display/loading-display.component.jsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import React from "react";
|
||||
import { View } from "react-native";
|
||||
import { BarIndicator } from "react-native-indicators";
|
||||
|
||||
export default function LoadingDisplay({ count = 5 }) {
|
||||
//TODO: This is throwing an error per expo, but it appears to be happening inside the component itself.
|
||||
return (
|
||||
<View style={{ flex: 1, alignContent: "center", justifyContent: "center" }}>
|
||||
<BarIndicator count={count} color="dodgerblue" />
|
||||
</View>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user