Hi, lets say I have this example component ```jsx function Content(props) { return <div class={`timeline-content ${props.classes}`}> {props.children} </div> } ``` I want to create use the component like so ```jsx <Content class="some-class" /> //instead of <Content classes="some-class" /> ``` is that possible?