UNPKG

create-nova-expo-template

Version:

A template for creating a new React Native app using Expo and TypeScript, with a focus on performance and best practices.

8 lines (5 loc) 202 B
import { Dimensions } from "react-native"; const { width, height } = Dimensions.get("window"); export const SCREEN_WIDTH = width; export const SCREEN_HEIGHT = height; export const SPACING = 8;