UNPKG

229 BJavaScriptView Raw
1const resolvePath = require('./resolve-component-import-path');
2
3module.exports = (item, filePath) => {
4 if (typeof item === 'string') return item;
5 return `import ${item.value} from "${resolvePath(filePath, item.path)}";`;
6};