Iliya Zhechev
App initial commit with bare bones app
0924f9b
raw
history blame contribute delete
229 Bytes
import { Dimensions } from 'react-native';
const width = Dimensions.get('window').width;
const height = Dimensions.get('window').height;
export default {
window: {
width,
height,
},
isSmallDevice: width < 375,
};