Tech_Tracker_Expo/nativewind.d.ts

14 lines
317 B
TypeScript
Raw Normal View History

2024-08-05 10:20:06 -05:00
import 'nativewind/types';
import { ViewProps, TextProps } from 'react-native';
declare module 'react-native' {
interface ViewProps {
className?: string; // Allows `className` prop on `View` components
}
interface TextProps {
className?: string; // Allows `className` prop on `Text` components
}
}