mirror of
https://github.com/tomru/pdfer.git
synced 2026-03-03 14:37:21 +01:00
11 lines
212 B
TypeScript
11 lines
212 B
TypeScript
import Layout from '../components/Layout'
|
|
import App from '../components/App'
|
|
|
|
const IndexPage = () => (
|
|
<Layout title="Home | Next.js + TypeScript Example">
|
|
<App />
|
|
</Layout>
|
|
)
|
|
|
|
export default IndexPage
|