mirror of
https://github.com/maputnik/editor.git
synced 2026-08-31 01:17:27 +00:00
9540686b40
Keeps the repo clean, same as several other of our repos --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
14 lines
288 B
TypeScript
14 lines
288 B
TypeScript
import React from 'react'
|
|
|
|
type ScrollContainerProps = {
|
|
children?: React.ReactNode
|
|
};
|
|
|
|
export default class ScrollContainer extends React.Component<ScrollContainerProps> {
|
|
render() {
|
|
return <div className="maputnik-scroll-container">
|
|
{this.props.children}
|
|
</div>
|
|
}
|
|
}
|