| 1 2 3 4 5 6 7 8 9 10 11 12 13 | 1× | /* @flow */
// Module with the same interface as the core aphrodite module,
// except that styles injected do not automatically have !important
// appended to them.
import {defaultSelectorHandlers} from './generate';
import makeExports from './exports';
const useImportant = false; // Don't add !important to style definitions
export default makeExports(
useImportant,
defaultSelectorHandlers
);
|