mirror of
https://github.com/smartyellow/status.git
synced 2025-01-18 21:47:58 +00:00
9 lines
193 B
JavaScript
9 lines
193 B
JavaScript
import App from './app.svelte';
|
|
import { writable } from 'svelte-local-storage-store';
|
|
|
|
new App({ target: document.body });
|
|
|
|
export const settings = writable('settings', {
|
|
theme: 'dark',
|
|
});
|