Skip to content

Commit

Permalink
fix(readme): typo
Browse files Browse the repository at this point in the history
  • Loading branch information
cxspxr committed Oct 23, 2022
1 parent 698fd47 commit 29100e0
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,8 @@ const EveningHoursIndicator: React.FC = () => {

return (
<>
<p>
{reached8PM ? "its finally 8 PM" : "its not yet 8 PM"}
</p>
<p>
{reached9PM ? 'its finally 9 PM : 'its not yet 9 PM'}
</p>
<p>{reached8PM ? "its finally 8 PM" : "its not yet 8 PM"}</p>
<p>{reached9PM ? "its finally 9 PM" : "its not yet 9 PM"}</p>
</>
);
};
Expand Down

0 comments on commit 29100e0

Please sign in to comment.