mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 01:35:17 +01:00
24 lines
482 B
JavaScript
24 lines
482 B
JavaScript
import React from 'react';
|
|
import Layout from 'components/layout';
|
|
import Link from 'next/link';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<Layout>
|
|
Hello.
|
|
<br />
|
|
<Link href="/?q=abc">
|
|
<a>abc</a>
|
|
</Link>
|
|
<br />
|
|
<Link href="/?q=123">
|
|
<a>123</a>
|
|
</Link>
|
|
<br />
|
|
<button id="primary-button" className="otherClass umami--click--primary-button" type="button">
|
|
Button
|
|
</button>
|
|
</Layout>
|
|
);
|
|
}
|