mirror of
https://github.com/jcreek/SvelteKitSaasBoilerplate.git
synced 2026-07-13 02:53:50 +00:00
feat(*): Add basic site functionality including sign up, sign in and sign out
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
import { writable } from 'svelte/store';
|
||||
import { type User } from '@supabase/auth-js';
|
||||
|
||||
// Create a user store with null as the initial value
|
||||
export const user = writable<User | null>(null);
|
||||
Reference in New Issue
Block a user