Here is the code where I have included spread operator
style={{ ...styles.detailsRow.icon, alignSelf: \'centre\' }}
What things d
You are missing one babel preset, stage-0
npm install --save-dev babel-preset-stage-0
if you have .bablerc file add following to it.
.bablerc
{ "presets":[ "es2015", "react", "stage-0" ] }
Or added to webpack config in loader.