Hello World!

This commit is contained in:
Sakura Knoll
2021-12-20 00:57:38 +09:00 Unverified
commit 61bf657f23
1744 changed files with 22024 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
import Link from 'next/link'
import React from 'react'
import { Container } from 'react-bootstrap'
import RootNavigator from '../components/organisms/RootNavigator'
const IndexPage = () => {
return (
<Container>
<RootNavigator />
<div>
<Link href='/honkai3rd'>
<a>
<h2>Honkai 3rd</h2>
</a>
</Link>
</div>
</Container>
)
}
export default IndexPage