This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <View style={{flex: 1}}> | |
| <Text style={{flexShrink: 1}}> You miss fdddddd dddddddd | |
| You miss fdd | |
| </Text> | |
| </View> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const condition = true | |
| const conditionalField = { ...(condition && { key: 'value' }) }; | |
| const conditionalArrayItem = [...(condition) ? ['value'] : []] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const ConditionalWrapper = ({ condition, wrapper, children }) => | |
| condition ? wrapper(children) : children; |