-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
When using tailwind this doesn't produce the correct styles.
for example:
<Grid
containerStyle={tailwind("w-full")}
/>
produces
const styles = StyleSheet.create({
container: {
tailwind("w-full"), // syntax error
},
})
whereas it should produce
const styles = StyleSheet.create({
container: tailwind("w-full"),
})
Metadata
Metadata
Assignees
Labels
No labels