Skip to content

Add support to syntax. #3

@chrisladzamach

Description

@chrisladzamach

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions