mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2025-01-07 11:05:21 +01:00
9 lines
181 B
JavaScript
9 lines
181 B
JavaScript
import React from 'react'
|
|
|
|
const ScrollContainer = (props) => {
|
|
return <div className="maputnik-scroll-container">
|
|
{props.children}
|
|
</div>
|
|
}
|
|
|
|
export default ScrollContainer
|