diff --git a/README.md b/README.md index c07019c..be86024 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ const Story: React.FC<{id: number}> = ({id}) => { return (

{story.title}

-

{story.description

+

{story.description}

) } @@ -184,9 +184,11 @@ const useCounter = connectFactoryObservable( const Counter: React.FC<{id: string}> = ({id}) => { const counter = useCounter(id); return ( - - {counter} - + + {counter} + + ) } ``` @@ -277,7 +279,7 @@ function Repos() { } if (repos.length === 0) { - return
No results were found.
+ return

No results were found.

} return ( @@ -312,9 +314,9 @@ function MostRecentlyUpdatedRepo() { const { id, name } = mostRecent return ( -
+

The most recently updated repo is {name} -

+

) }