import React from 'react'; import { View } from 'react-native'; import Animated, { concat } from 'react-native-reanimated'; import { ReText } from 'react-native-redash'; import { styles } from './styles'; interface BottomSheetDebugViewProps { values: Record | Animated.Node>; } const BottomSheetDebugView = ({ values }: BottomSheetDebugViewProps) => { return ( {Object.keys(values).map(key => ( ))} ); }; export default BottomSheetDebugView;