This repository has been archived on 2024-08-06. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
chellaris-sign-up-site/src/lib/stores/admin-page/GameStore.ts
2023-09-07 22:04:51 +02:00

5 lines
No EOL
158 B
TypeScript

import { writable, type Writable } from "svelte/store";
const AdminSelectedGameStore: Writable<number> = writable(1);
export default AdminSelectedGameStore;