2017-01-03 18:06:04 +00:00
|
|
|
import React from 'react'
|
|
|
|
import { StyleSheet, css } from 'aphrodite'
|
|
|
|
|
2017-05-09 22:33:39 +00:00
|
|
|
if (typeof window !== 'undefined') {
|
|
|
|
/* StyleSheet.rehydrate takes an array of rendered classnames,
|
|
|
|
and ensures that the client side render doesn't generate
|
|
|
|
duplicate style definitions in the <style data-aphrodite> tag */
|
|
|
|
StyleSheet.rehydrate(window.__NEXT_DATA__.ids)
|
|
|
|
}
|
|
|
|
|
2017-01-03 18:06:04 +00:00
|
|
|
export default () => (
|
|
|
|
<div className={css(styles.root)}>
|
|
|
|
<h1 className={css(styles.title)}>My page</h1>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
root: {
|
|
|
|
width: 80,
|
|
|
|
height: 60,
|
|
|
|
background: 'white',
|
|
|
|
':hover': {
|
|
|
|
background: 'black'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
title: {
|
|
|
|
marginLeft: 5,
|
|
|
|
color: 'black',
|
|
|
|
fontSize: 22,
|
|
|
|
':hover': {
|
|
|
|
color: 'white'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|