OwlcodeAds/js-src/components/index.tsx
2023-08-05 09:22:04 +02:00

12 lines
231 B
TypeScript

import * as React from 'react'
import Layout from '@owlads/components/layout'
export default function Index (): JSX.Element {
return (
<Layout>
<p>hola</p>
<p>hola</p>
</Layout>
)
}