import React from "react"; import { View, Text, Dimensions } from "react-native"; import tw from "tailwind-rn"; const {width} = Dimensions.get("window"); export default function Video({ name, file }) { return ( {name} ); }