Add support for minimum complete jsx with their corresponding imports syntax to still native syntax.
support to:
export function NameComponent(){
return (
)
}
function NameComponent(){
return (
)
}
export const ComponentName = () => {
return (
)
}
const ComponentName = () => {
return (
)
}
and more...
In Output, its full equivalent should be displayed.
This is the output style actualy displayed, keep it.
import { StyleSheet, View, Text } from 'react-native';
<View>
<Text>hello</Text>
</View>
Add support for minimum complete jsx with their corresponding imports syntax to still native syntax.
support to:
and more...
In Output, its full equivalent should be displayed.
This is the output style actualy displayed, keep it.