mirror of
https://github.com/tomru/pdfer.git
synced 2026-03-03 22:47:25 +01:00
11 lines
168 B
TypeScript
11 lines
168 B
TypeScript
import Layout from '../components/Layout'
|
|
import App from '../components/App'
|
|
|
|
const IndexPage = () => (
|
|
<Layout>
|
|
<App />
|
|
</Layout>
|
|
)
|
|
|
|
export default IndexPage
|