import React from 'react';
import styles from './stylesheet.moudle.css'
<div className={styles['first-style']} {styles['second-style']}>
some content
</div>
What is the correct way to include styles['second-style']
in the className attribute? I attempted using a comma but it did not work.