-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
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>
Metadata
Metadata
Assignees
Labels
No labels