import * as React from "react"; import { isTV } from "@applicaster/zapp-react-native-utils/reactUtils"; import { AudioPlayerTV } from "./tv"; import { AudioPlayerMobile } from "./mobile"; import { Props } from "./types"; export function AudioPlayer(props: Props) { if (isTV()) { return ; } return ; }