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"),
})
When using tailwind this doesn't produce the correct styles.
for example:
produces
whereas it should produce