open5gs/webui/pages/index.js

24 lines
612 B
JavaScript
Raw Normal View History

2017-05-19 05:13:44 +00:00
/**
* The index page uses a layout page that pulls in header and footer components
*/
import Link from 'next/link'
import React from 'react'
import Page from '../components/page'
import Layout from '../components/layout'
2017-05-17 10:53:22 +00:00
2017-05-19 05:13:44 +00:00
export default class extends Page {
2017-05-17 10:53:22 +00:00
2017-05-19 05:13:44 +00:00
render() {
return (
<Layout session={this.props.session}>
<h2>Under construction</h2>
<ul>
<li><Link prefetch href="/helloworld"><a>HelloWorld</a></Link> - The simplest possible example</li>
<li><Link prefetch href="/login"><a>Login</a></Link> - prefetch</li>
</ul>
</Layout>
)
}
2017-05-18 07:53:27 +00:00
2017-05-19 05:13:44 +00:00
}