Mixins Use JavaScript's spread syntax for mixing: const mixinRedText = { color: 'red', }; const template = { ...mixinRedText, background: '#eee', };