import React from "react"; import { Focusable } from "@applicaster/zapp-react-native-ui-components/Components/Focusable"; type Props = { children: any; nextFocusDown?: any; }; export const PlayerFocusableWrapperView = (props: Props) => { return ( {props.children} ); };