You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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';
The text was updated successfully, but these errors were encountered:
Sorry if this is the expected behavior. It looks like when requiring the
style
helper individually, it has to be imported from thedom-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';
The text was updated successfully, but these errors were encountered: