mirror of
https://github.com/bellingcat/ukraine-timemap.git
synced 2026-06-11 21:08:36 +03:00
18 lines
337 B
JavaScript
18 lines
337 B
JavaScript
import React from 'react'
|
|
|
|
export default ({ onClickHandler, closeMsg }) => {
|
|
return (
|
|
<div
|
|
className='narrative-close'
|
|
onClick={onClickHandler}
|
|
>
|
|
<button
|
|
className='side-menu-burg is-active'
|
|
>
|
|
<span />
|
|
</button>
|
|
<div className='close-text'>{closeMsg}</div>
|
|
</div>
|
|
)
|
|
}
|