9 lines
194 B
TypeScript
9 lines
194 B
TypeScript
import App from './App.svelte'
|
|
import './index.css'
|
|
import '@fortawesome/fontawesome-free/css/all.css'
|
|
|
|
const app = new App({
|
|
target: document.getElementById('app')
|
|
})
|
|
|
|
export default app
|