mirror of
https://github.com/streamyfin/streamyfin.git
synced 2025-08-20 18:37:18 +02:00
10 lines
168 B
TypeScript
10 lines
168 B
TypeScript
import { ActivityIndicator, View } from "react-native";
|
|
|
|
export const Loading: React.FC = () => {
|
|
return (
|
|
<View>
|
|
<ActivityIndicator />
|
|
</View>
|
|
);
|
|
};
|