Files
bot-whatsapp/packages/portal/src/routes/layout.tsx
2023-01-09 18:37:58 +01:00

21 lines
513 B
TypeScript

import { component$, Slot } from '@builder.io/qwik'
import Header from '../components/header/header'
export default component$(() => {
return (
<>
<main>
<Header />
<section>
<Slot />
</section>
</main>
<footer>
<a href="https://qwik.builder.io/" target="_blank">
Made with <strong>Qwik</strong>
</a>
</footer>
</>
)
})