The correct syntax to import both default
and named exports from ES6 module is to pass the default
name (whatever one wants), and named, not-default modules separated by a comma:
Example: index.js
import browsers, { otherValue } from './browsers';
in an exemplary file tree:
.
└── src
├── browsers.js
└── index.js
Often encountered real life example:
import React, { useState, useEffect } from 'react';