Files
leaflet-geosearch/docs/components/Playground.tsx
2020-05-23 11:02:49 +02:00

14 lines
317 B
TypeScript

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