Skip to content
This repository was archived by the owner on Sep 21, 2019. It is now read-only.
This repository was archived by the owner on Sep 21, 2019. It is now read-only.

Named-function SFCs get mistransformed #38

Closed
@akx

Description

@akx

I have an SFC written as a named function, so it can be default-exported with the name intact:

export default function PopoverConfirmedButton({...}) { ... }

This gets transformed into

export default const PopoverConfirmedButton: React.SFC<PopoverConfirmedButtonProps> = ({...}) { ... }

which is not a valid ES export statement, so the Prettier step chokes and I get Failed to convert js/components/PopoverConfirmedButton.jsx.

The correct transformation would probably be

const PopoverConfirmedButton: React.SFC<PopoverConfirmedButtonProps> = ({...}) { ... }
export default PopoverConfirmedButton;

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions