Makes the navbar and layout clicks
This commit is contained in:
6
src/lib/stores/layout.ts
Normal file
6
src/lib/stores/layout.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { persistentWritable } from '$lib/persistentStore';
|
||||
import type { Writable } from 'svelte/store';
|
||||
|
||||
export type LayoutDirection = 'column' | 'row';
|
||||
|
||||
export const layoutDirection: Writable<LayoutDirection> = persistentWritable('layout', 'column');
|
||||
Reference in New Issue
Block a user