mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-12 03:05:12 +00:00
8 lines
151 B
JavaScript
8 lines
151 B
JavaScript
import { writable } from 'svelte/store';
|
|
|
|
export const stores = {
|
|
preloading: writable(null),
|
|
page: writable(null)
|
|
};
|
|
|
|
export const CONTEXT_KEY = {}; |