import constants from '../constants.json' export default function Sleep (props) { const hours = new Date().getHours() if (hours < 4 || hours > 23) { return (
) } else { return null } }