dom-helpers icon indicating copy to clipboard operation
dom-helpers copied to clipboard

'style' helper must be imported from 'dom-helpers/css'

Open flurmbo opened this issue 6 years ago • 0 comments

Sorry if this is the expected behavior. It looks like when requiring the style helper individually, it has to be imported from the dom-helpers/css route. E.g. the following doesn't work:

import style from 'dom-helpers/style';

Whereas the following examples do work:

import style from 'dom-helpers/css';

import { style } from 'dom-helpers';

flurmbo avatar Sep 10 '19 17:09 flurmbo