Initial import: Music_Server, MusicFree, catalog-sync

This commit is contained in:
2026-05-23 16:51:14 +08:00
commit 069af30dba
847 changed files with 179878 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import React from "react";
import { Image, ImageProps } from "react-native";
interface IImageProps extends ImageProps {
uri?: string | null;
emptySrc?: any;
}
export default function (props: Omit<IImageProps, "source">) {
const { uri, emptySrc } = props;
const source = typeof uri === "string"
? {
uri,
}
: emptySrc;
return <Image {...props} source={source} />;
}