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