const accountId = context.accountId; const myStyle = { color: "black", backgroundColor: "#ffd", padding: "10px", fontFamily: "Georgia", fontSize: "13px", }; return ( <div style={myStyle}> <h1>`Hello, ${accountId}!`</h1> <p>My first paragraph.</p> <p>My second paragraph.</p> </div> );