First commit

Explore Svelte and Sapper
This commit is contained in:
2019-12-23 18:43:22 +01:00
commit c003b969d5
18 changed files with 2172 additions and 0 deletions

15
src/store.js Normal file
View File

@@ -0,0 +1,15 @@
import * as fn from './functions'
import { writable } from 'svelte/store'
/* ==========================================================================
Site related
========================================================================== */
export let currentLocation = {}
export let loaded = writable(false)
// Data
export let locations = writable()
export let countries = writable()
export let site = writable()