mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-18 19:49:16 +00:00
31 lines
818 B
TypeScript
31 lines
818 B
TypeScript
import { component$ } from '@builder.io/qwik'
|
|
import {
|
|
QwikCityProvider,
|
|
RouterOutlet,
|
|
ServiceWorkerRegister,
|
|
} from '@builder.io/qwik-city'
|
|
import { RouterHead } from './components/router-head/router-head'
|
|
|
|
import './global.css'
|
|
|
|
export default component$(() => {
|
|
/*
|
|
* The root of a QwikCity site always start with the <QwikCityProvider> component,
|
|
* immediately followed by the document's <head> and <body>.
|
|
*
|
|
* Dont remove the `<head>` and `<body>` elements.
|
|
*/
|
|
return (
|
|
<QwikCityProvider>
|
|
<head>
|
|
<meta charSet="utf-8" />
|
|
<RouterHead />
|
|
</head>
|
|
<body lang="en">
|
|
<RouterOutlet />
|
|
<ServiceWorkerRegister />
|
|
</body>
|
|
</QwikCityProvider>
|
|
)
|
|
})
|