Use A Local Module, Using Local Dependency
I'm trying to include a local library, so i follow theese 2 tutorials: how to create library, how to consume local library. So, i have a nice sample library (it has package.json, i
Solution 1:
import defaultExport from './local-file'
Or
import { namedExport } from './local-file'
Post a Comment for "Use A Local Module, Using Local Dependency"