2017-01-06 11:38:51 +00:00
|
|
|
import React from 'react'
|
|
|
|
import Page from '../components/Page'
|
|
|
|
|
|
|
|
export default class Counter extends React.Component {
|
|
|
|
render () {
|
|
|
|
return (
|
2018-06-30 20:29:24 +00:00
|
|
|
<Page title='Other Page' linkTo='/' />
|
2017-01-06 11:38:51 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|