my blog https://overreacted.io
53
fork

Configure Feed

Select the types of activity you want to include in your feed.

typos

+4 -4
+4 -4
public/jsx-over-the-wire/index.md
··· 1952 1952 <article> 1953 1953 <h1>{postTitle}</h1> 1954 1954 <div dangerouslySetInnerHTML={{ __html: postContent }} /> 1955 - <p>by {author.name}</p> 1955 + <p>by {postAuthor.name}</p> 1956 1956 <section> 1957 1957 {postLikes} 1958 1958 </section> ··· 2180 2180 <article> 2181 2181 <h1>{postTitle}</h1> 2182 2182 <div dangerouslySetInnerHTML={{ __html: postContent }} /> 2183 - <p>by {author.name}</p> 2183 + <p>by {postAuthor.name}</p> 2184 2184 <section> 2185 2185 {children} 2186 2186 </section> ··· 2317 2317 import { LikeButton } from './LikeButton'; 2318 2318 2319 2319 console.log(LikeButton); 2320 - // "src/LikeButton.js#LikeButton' 2320 + // "src/LikeButton.js#LikeButton" 2321 2321 2322 2322 async function LikeButtonViewModel({ 2323 2323 postId, ··· 2484 2484 <article> 2485 2485 <h1>{postTitle}</h1> 2486 2486 <div dangerouslySetInnerHTML={{ __html: postContent }} /> 2487 - <p>by {author.name}</p> 2487 + <p>by {postAuthor.name}</p> 2488 2488 <section> 2489 2489 {children} 2490 2490 </section>