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