mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-18 03:29:15 +00:00
19 lines
621 B
TypeScript
19 lines
621 B
TypeScript
/*
|
|
* WHAT IS THIS FILE?
|
|
*
|
|
* Development entry point using only client-side modules:
|
|
* - Do not use this mode in production!
|
|
* - No SSR
|
|
* - No portion of the application is pre-rendered on the server.
|
|
* - All of the application is running eagerly in the browser.
|
|
* - More code is transferred to the browser than in SSR mode.
|
|
* - Optimizer/Serialization/Deserialization code is not exercised!
|
|
*/
|
|
import type { RenderOptions } from '@builder.io/qwik'
|
|
import { render } from '@builder.io/qwik'
|
|
import Root from './root'
|
|
|
|
export default function (opts: RenderOptions) {
|
|
return render(document, <Root />, opts)
|
|
}
|