Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 175 Bytes

mixins.md

File metadata and controls

13 lines (11 loc) · 175 Bytes

Mixins

Use JavaScript's spread syntax for mixing:

const mixinRedText = {
    color: 'red',
};
const template = {
    ...mixinRedText,
    background: '#eee',
};