I'm writing a small Flux/React app that will display images in a gallery. I have a timer in a Flux store that pulls new images from a web service every 30 seconds and adds them to a list in the store, and then emits a change down so views can render the new photo.
I have all of that working but now I'd like to figure out how to add some css specifically to the newest images that were added, however I'm not really sure what the best way is to communicate that down to the view from the store without it getting really crufty...