/* global React */ const Col = ({ title, children }) => (

{title}

); const Li = ({ href = '#', children }) => { const [hover, setHover] = React.useState(false); return (
  • setHover(true)} onMouseLeave={() => setHover(false)} style={{ fontSize: 12, color: hover ? 'rgba(254,255,238,0.70)' : 'rgba(254,255,238,0.35)', textDecoration: 'none', transition: 'color .2s', }} > {children}
  • ); }; const Footer = () => ( ); window.Footer = Footer;