Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 521 Bytes

chapter-2.md

File metadata and controls

27 lines (21 loc) · 521 Bytes
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.

Heading h2

Heading h4

  • bold
  • emphasized
  • highlighted
  • regular text
function Square(props) {
    return (
        <button className="square" onClick={props.onClick}>
            {props.value}
        </button>
    );
}