8 lines
315 B
TypeScript
8 lines
315 B
TypeScript
// welcome.tsx (Web 版本)
|
|
// 在 Web 端不显示任何内容
|
|
import { StyleProp, ViewStyle } from "react-native";
|
|
|
|
// 占位符 移动端实际引入文件是 welcome.native.tsx 文件
|
|
export default function WebLottie(props: { source: string, style?: StyleProp<ViewStyle>, loop?: boolean }) {
|
|
return null;
|
|
} |