qmining-page/src/components/sleep.js
2020-04-14 14:35:21 +02:00

22 lines
445 B
JavaScript

import constants from '../constants.json'
export default function Sleep (props) {
const hours = new Date().getHours()
if (hours < 4 || hours > 23) {
return (
<div>
<center>
<img
style={{
margin: '10px',
width: '300px'
}}
src={constants.siteUrl + 'img/aludni.jpeg'}
/>
</center>
</div>
)
} else {
return null
}
}