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