portfu_admin 1.3.0

Library of Admin tools build on toip of Portfu
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { writable } from 'svelte/store';

export const contentTab = writable('HM');

export const filesStore = writable([]);

export const databaseStore = writable([
    { id: 1, name: 'John Doe', email: 'john@example.com' },
    { id: 2, name: 'Jane Smith', email: 'jane@example.com' }
]);

export const postsStore = writable([
    { id: 1, title: 'First Post', content: 'This is the content of the first post.' },
    { id: 2, title: 'Second Post', content: 'This is the content of the second post.' }
]);

export const loggedInStore = writable(false);