mirror of
https://github.com/jlengrand/leaflet-geosearch.git
synced 2026-03-10 08:31:26 +00:00
14 lines
317 B
TypeScript
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;
|