Skip to content

v0.5.6

Compare
Choose a tag to compare
@pedronauck pedronauck released this 11 Jul 05:09
· 1222 commits to main since this release

Changelog

🐞  Bug Fixes

  • docz: add theme config transform before merge (dc3448a)
  • docz-theme-default: sidebar search (8fd77ec)

🚀  Features

  • docz: add classname and style props for Playground (1b64ed3)
  • docz-core: add webpack-serve-waitpage (83c493b)

Playground with style

Now you able to add className or style properties on Playground component like that:

import { Playground } from 'docz'
import { Button } from './Button'

<Playground className="some-class">
  <Button>Click me</Button>
</Playground>