2020-02-28 10:20:47 -05:00
|
|
|
import Block from '../block'
|
|
|
|
|
|
|
|
export default class PopoverLayout extends PureComponent {
|
2020-02-19 18:57:07 -05:00
|
|
|
render() {
|
2020-02-28 10:20:47 -05:00
|
|
|
const { children } = this.props
|
|
|
|
|
2020-02-19 18:57:07 -05:00
|
|
|
return (
|
|
|
|
<div>
|
2020-02-28 10:20:47 -05:00
|
|
|
<Block>
|
|
|
|
{children}
|
|
|
|
</Block>
|
2020-02-19 18:57:07 -05:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|