I have this require statement
require(\'smoothscroll-polyfill\').polyfill();
But I would like to write it as an es6 impor
using import {} from '...' instead.
import {} from '...'
import {polyfill} from 'smoothscroll-polyfill';//ref polyfill from 'smotthscroll-polyfill' polyfill();//ref a method,so you must call it after imported.