I am writing a React application and using @material-ui/styles, which is based on JSS. I am styling using the higher-order component API. How do I specify an element through its id in my styles? I have searched in both Material UI and JSS docs but could not find any information on it. Something like:
const styles = (theme) => {
className:{
propertyName:"something something"
},
#elementId:{
propertyName:"something something"
}
}