Files
pdfer/pages/index.tsx
2021-02-25 00:35:03 +01:00

11 lines
168 B
TypeScript

import Layout from '../components/Layout'
import App from '../components/App'
const IndexPage = () => (
<Layout>
<App />
</Layout>
)
export default IndexPage