Skip to content

Commit

Permalink
v.1.0 and small touches (#10)
Browse files Browse the repository at this point in the history
* Make example simpler

* add blog post reference

* wording

* release
  • Loading branch information
ivanslo authored Mar 15, 2024
1 parent 0c422f0 commit 2382d3f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/stale-jeans-type.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@loveholidays/preact-perf-metrics': major
---

Release
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This utility allows you to instrument your preact application bundle, and to wri

Using this tool, you can ensure that performance doesn't regress unintentionally.

See the [/example](/example) for practical information.
Know the story behind the tool in our [Blog Post](https://tech.loveholidays.com/from-manual-grind-to-automated-bliss-introducing-preact-perf-metrics-d37ce188532b), and check the [/example code](/example) for practical information.

<i>Made with ❤️ by loveholidays.com</i>

Expand Down
2 changes: 1 addition & 1 deletion example/src/ItemsList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const ItemsList = ({ renderStrategy }) => {
key={index}
text={item}
selected={index === selected}
as={(props) => <div {...props}>{props.children}</div>}
as={(props) => <div {...props}/>}
/>
))}

Expand Down

0 comments on commit 2382d3f

Please sign in to comment.