Files
leaflet-geosearch/docs/components/Playground.tsx
Stephan Meijer dc733dbfb0 add better docs
2020-04-12 19:27:45 +02:00

14 lines
265 B
TypeScript

import React from 'react'
import { Playground, PlaygroundProps } from 'docz'
import styles from './Playground.module.css';
export default (props: PlaygroundProps) => {
return (
<div className={styles.root}>
<Playground {...props} />
</div>
)
}