wix-incubator / vscode-glean

The extension provides refactoring tools for your React codebase
MIT License
1.46k stars 56 forks source link

Using Extract Component to File in Client component in NextJS13 breaks it #188

Open yafkari opened 1 year ago

yafkari commented 1 year ago

I am working on a project on NextJS 13 and tried to extract a component to a file. I had a 'use client' at the top of the file but after extracting it, the extension added the import to the extracted component and broke the first line that was supposed to be "use client".

Before:

'use client'

// my imports

After:

import { ExtractedComponent ] from './ExtractedComponent'
;('use client')

// my imports