I feel like there is a simple answer here, but I'm not finding it -
In my react header I import my stylesheet under 'styles' and as such refers to css classes as
<div className={styles.selectorname}>
But I can't figure out, with this notation, how to declare multiple styles on one element. Example that doesn't work:
<div className={styles.selectorname1} {styles.selectorname2}>
Any ideas?