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.

14 lines (11 loc) 305 B
import { COLORS } from "@/constants/Colors"; import { StyleSheet } from "react-native"; const styles = StyleSheet.create({ closeSection: { justifyContent: "flex-end" }, modalContainer: { backgroundColor: COLORS.light.white, borderRadius: 30, padding: 20, }, }); export default styles;