1

How can you manage that in ES6?

    const withResponsiveness = require('../helpers/withResponsiveness.js').default;
    const ResponsiveLegend = withResponsiveness(Legend);
Toto
  • 39
  • 1
  • 6
  • worth noting: https://stackoverflow.com/questions/31354559/using-node-js-require-vs-es6-import-export – justMe Aug 08 '18 at 10:03

1 Answers1

3

Simply use import:

import withResponsiveness from '../helpers/withResponsiveness.js';

const ResponsiveLegend = withResponsiveness(Legend);
hsz
  • 143,040
  • 58
  • 252
  • 308