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>