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 (6 loc) 174 B
import { ReactNode } from "react"; import { ViewStyle } from "react-native"; export interface CardWrapperProps { children: ReactNode; customStyles?: ViewStyle; }