2017-01-06 11:38:51 +00:00
|
|
|
import React from 'react'
|
|
|
|
import Page from '../components/Page'
|
|
|
|
|
|
|
|
export default class Counter extends React.Component {
|
2018-12-17 16:34:32 +00:00
|
|
|
render() {
|
|
|
|
return <Page title="Index Page" linkTo="/other" />
|
2017-01-06 11:38:51 +00:00
|
|
|
}
|
|
|
|
}
|