UNPKG

@betarena/ad-engine

Version:
43 lines (38 loc) 2.34 kB
// ╭──────────────────────────────────────────────────────────────────────────────────╮ // │ 📌 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;