{this.state.id}
href="#demo1"
id="demo1"
id
state to the HTML attribute to get something like this:href={"#demo + {this.state.id}"}
#demo1
var sample = "test";
var result = `this is just a ${sample}`;
//this is just a test
href={"#demo" + this.state.id}
var text = "world";
{"Hello " + text + " Andrew"}
href={`#demo${this.state.id}`}
{listOfCategories.map((Categories, key) => { return ( <a href={`#${Categories.designation}`} className="cat-link" key={key}> </div> </a> ); })}