Input ``` .js const test = 'hello world' export default test ``` Output ``` .js // main.js const test = 'hello world' var test = test // Identifier 'test' has already been declared export { test as default }; ```
Input
Output