Skip to content

Commit 1689bd9

Browse files
fix(index): make sure to export the named exports
Fixes #217 Caused by #216
1 parent ed5c61a commit 1689bd9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

index.mjs

+4-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
export { default, domToReact, htmlToDOM, attributesToProps } from './index.js';
1+
import HTMLReactParser from './index.js';
2+
3+
export default HTMLReactParser;
4+
export var { domToReact, htmlToDOM, attributesToProps } = HTMLReactParser;

0 commit comments

Comments
 (0)