picocss / picocss.com

Pico CSS documentation
https://picocss.com
Other
17 stars 21 forks source link

Fix a code example #15

Closed nesk closed 3 hours ago

nesk commented 4 months ago

An example of code contains:

<button className="secondary">
  Cancel
</button>

This code should use class instead of className:

<button class="secondary">
  Cancel
</button>
lucaslarroche commented 3 hours ago

@nesk, thank you. Sorry for the delay. Merged