mirror of
https://github.com/bellingcat/ukraine-timemap.git
synced 2026-06-11 21:08:36 +03:00
10 lines
184 B
JavaScript
10 lines
184 B
JavaScript
import React from 'react'
|
|
|
|
export default ({ showing, children }) => {
|
|
return (
|
|
<div className={`cover-container ${showing ? 'showing' : ''}`}>
|
|
{children}
|
|
</div>
|
|
)
|
|
}
|