// ╭──────────────────────────────────────────────────────────────────────────────────╮
// │ 📌 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;
