all files / src/ no-important.js

100% Statements 1/1
100% Branches 0/0
100% Functions 0/0
100% Lines 1/1
1 2 3 4 5 6 7 8 9 10 11 12 13                       
/* @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
);