Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 335 Bytes

README.md

File metadata and controls

12 lines (8 loc) · 335 Bytes

ES6 Re-export override demo

Check the src/re-export folder and unit tests are in re-export.test.tsx.

The solution is from stackoverflow

import { theFunction } from './myOverrides'

export * from 'some-library'
export { theFunction }