React Js Coding Tips
React Js Coding Tips
let { imgSrc,
title,
artist,
clas,
thumbnail,
breakpoint } = this.props;
do this
const {
imgSrc,
title,
artist,
clas,
thumbnail,
breakpoint
} = this.props
Don’t do this
<GalleryImage
imgSrc="./src/img/vangogh2.jpg"
title="Starry Night"
artist="Van Gogh"
clas="landscape"
thumbnail="./src/img/thumb/vangogh2.gif"
breakpoint={320} />
Do this
<GalleryImage
imgSrc='./src/img/vangogh2.jpg'
title='Starry Night'
artist='Van Gogh'
clas='landscape'
thumbnail='./src/img/thumb/vangogh2.gif'
breakpoint={320}
/>
Don’t do this
Do this