maputnik/src/components/ScrollContainer.jsx

10 lines
181 B
React
Raw Normal View History

2016-12-17 20:19:01 +01:00
import React from 'react'
const ScrollContainer = (props) => {
2017-01-10 21:28:30 +01:00
return <div className="maputnik-scroll-container">
2016-12-17 20:19:01 +01:00
{props.children}
</div>
}
export default ScrollContainer