forked from Rockachopa/Timmy-time-dashboard
7 lines
219 B
TypeScript
7 lines
219 B
TypeScript
|
|
/**
|
||
|
|
* Re-export Pressable with proper typing for style callbacks.
|
||
|
|
* NativeWind disables className on Pressable, so we always use the style prop.
|
||
|
|
*/
|
||
|
|
import { Pressable } from "react-native";
|
||
|
|
export default Pressable;
|