@betarena/ad-engine
Version:
Betarena ad-engine widget
43 lines (38 loc) • 2.34 kB
text/typescript
// ╭──────────────────────────────────────────────────────────────────────────────────╮
// │ 📌 High Order Overview │
// ┣──────────────────────────────────────────────────────────────────────────────────┫
// │ ➤ Code Format // V.8.0 │
// │ ➤ Status // 🔒 LOCKED │
// │ ➤ Author(s) // @<author> │
// │ ➤ Maintainer(s) // @<author> │
// │ ➤ Created on // <date-created> │
// ┣──────────────────────────────────────────────────────────────────────────────────┫
// │ 📝 Description │
// ┣──────────────────────────────────────────────────────────────────────────────────┫
// │ <project> (Module)
// │ |: <insert-module-summary-here>
// ╰──────────────────────────────────────────────────────────────────────────────────╯
import App from './App.svelte';
let
/**
* @description
*/
app
;
// ╭─────
// │ CHECK |:| running on 'browser'
// ╰─────
if (typeof document !== 'undefined')
app
= new App
(
{
target: document.body,
props:
{
}
}
)
;
;
export default app;