import React from 'react'; import { View } from 'react-native'; import { useTracked } from '../../provider'; import { DDS } from '../../services/DeviceDetection'; import { getElevation } from '../../utils'; const DialogContainer = ({ width, height, ...restProps }) => { const [state] = useTracked(); const colors = state.colors; return ( ); }; export default DialogContainer;