{ code: ` export default class MyComponent extends Component { render() { const styles = StyleSheet.create({}) return (<View> <Text>text1</Text> <Text style={styles.a}>text2</Text> </View>); } } `, }, this is my test code, line `text1` is ok, but `text2` use style props is fail 