I have a simple hello world app in react native
import React from "react";
import { Text, View } from 'react-native'
const App = () => {
return (
<View>
<Text>Hello World</Text>
</View>
)
}
export default App
I type style attribute in View component it won't complete the brackets which if I type in div element it will complete for me.
I have enabled this feature in settings.json but it doesn't work
Did it not support?