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