Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
localvoid committed Mar 13, 2023
1 parent e2c32a9 commit 6e8baf3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ivi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -964,9 +964,9 @@ to use simple javascript values and rerender entire UI subtree with
`forceUpdateRoot()` when this values are changed.
```js
const root = createRoot(document.getElementById("app")!);
const root = createRoot(document.getElementById("app"));

let theme = Theme.Light;
let theme = "Light";
function setTheme(t) {
if (theme !== t) {
theme = t;
Expand Down

0 comments on commit 6e8baf3

Please sign in to comment.