Skip to content

Commit

Permalink
fix(index): export without const in index.mjs
Browse files Browse the repository at this point in the history
Fixes #214, fixes #213
  • Loading branch information
remarkablemark committed Jan 28, 2021
1 parent 6819609 commit 9639afb
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions index.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
import HTMLReactParser from './index.js';

export default HTMLReactParser;
export const { domToReact, htmlToDOM, attributesToProps } = HTMLReactParser;
export { default, domToReact, htmlToDOM, attributesToProps } from './index.js';

0 comments on commit 9639afb

Please sign in to comment.