Solve the fact that when writing, for example:
<div>
<h1>hello</h1>
</div>
import { StyleSheet, View, Text } from 'react-native';
<View>
<Text>hello</Text>
</View>
const styles = StyleSheet.create({
});
If there are no styles written in Input, the styles section is not displayed.
