Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
toviszsolt committed Nov 21, 2024
1 parent 68dfe38 commit 7f4ab40
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,17 +58,18 @@ with the content elements. It's awfully simple so far, right?

```jsx
// Content blocks
conat ContentWithBoxes = () => {
const ContentWithBoxes = () => {
return (
<>
<section id="target-1">Content here</section>
<section id="target-2">Content here</section>
<section id="target-3">Content here</section>
</>
)};
);
};

// Heading tags
conat ContentWithHeaders = () => {
const ContentWithHeaders = () => {
return (
<>
<section>
Expand All @@ -81,7 +82,8 @@ conat ContentWithHeaders = () => {
<h2 id="target-3">Target 3</h2>
</section>
</>
)};
);
};
```

### Step 2: Navigation
Expand Down

0 comments on commit 7f4ab40

Please sign in to comment.