Skip to content

Instantly share code, notes, and snippets.

@thinkle
Created January 25, 2021 21:31
Show Gist options
  • Save thinkle/925cad62e4c2df14bdc0a786e2b20249 to your computer and use it in GitHub Desktop.
Save thinkle/925cad62e4c2df14bdc0a786e2b20249 to your computer and use it in GitHub Desktop.
import { writable } from 'svelte/store';
let storedToken = localStorage.getItem('token');
if (storedToken) {
initialValue = JSON.parse(storedToken);
}
export const token = writable(initialValue);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment