feat(ui): add changelog view
This commit is contained in:
8
view/src/stores/commits.ts
Normal file
8
view/src/stores/commits.ts
Normal file
@ -0,0 +1,8 @@
|
||||
import { writable } from "svelte/store";
|
||||
|
||||
|
||||
|
||||
const store = writable<Commit[]>([]);
|
||||
|
||||
|
||||
export default store;
|
@ -1,3 +1,4 @@
|
||||
import * as images from "./images";
|
||||
export { images }
|
||||
export { default as route } from "./route";
|
||||
export { default as route } from "./route";
|
||||
export { default as commitStore } from "./commits";
|
Reference in New Issue
Block a user