mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-20 20:49:15 +00:00
21 lines
513 B
TypeScript
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>
|
|
</>
|
|
)
|
|
})
|