import React from 'react' import style from 'next/css' export default () => (

Hello World

) const styles = style({ font: '15px Helvetica, Arial, sans-serif', background: '#eee', padding: '100px', textAlign: 'center', transition: '100ms ease-in background', ':hover': { background: '#ccc' } })