Skip to content

Commit

Permalink
docs(readme): update quickstart example
Browse files Browse the repository at this point in the history
  • Loading branch information
sebkolind committed Jun 13, 2024
1 parent 833716f commit 014b0cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

A **jsx-free**, **super-lightweight** and **zero-dependency** library to add reactivity to the web — without all the nonsense.

> [!IMPORTANT]
> [!IMPORTANT]
> Tent is currently in early development. It _can_ be used in production, but there might be breaking changes in future versions. If you're interested in contributing, please submit a PR or report an issue. Keep track of the changes in the [CHANGELOG](CHANGELOG.md).
## ⚙️ Installation
Expand Down Expand Up @@ -36,8 +36,8 @@ const Counter: Component<State> = {
},
};

// Append the component to the body
mount(document.body, Counter);
// Append the component to an element in the DOM
mount(document.querySelector('.counter'), Counter);
```

## 💡 Examples
Expand Down

0 comments on commit 014b0cf

Please sign in to comment.