title | seoTitle | seoDescription | excerpt |
---|---|---|---|
Testing |
This is the title that Google shows on a search result. |
This is the short description that Google shows on a search result. |
This is a free excerpt of the chapter. To see the rest, you'll have to buy the book. |
- bold
- emphasized
highlighted
- regular text
function Square(props) {
return (
<button className="square" onClick={props.onClick}>
{props.value}
</button>
);
}