Some checks failed
ESP-IDF Build / build (esp32c6, release-v5.4) (push) Failing after 2m4s
ESP-IDF Build / build (esp32c6, release-v5.5) (push) Failing after 4m23s
ESP-IDF Build / build (esp32s3, release-v5.4) (push) Failing after 1m53s
ESP-IDF Build / build (esp32s3, release-v5.5) (push) Failing after 4m16s
Signed-off-by: Peter Siegmund <developer@mars3142.org>
10 lines
171 B
JavaScript
10 lines
171 B
JavaScript
import { mount } from 'svelte'
|
|
import App from './App.svelte'
|
|
import './app.css'
|
|
|
|
const app = mount(App, {
|
|
target: document.getElementById('app'),
|
|
})
|
|
|
|
export default app
|