feat(ui): add changelog view

This commit is contained in:
2021-03-13 01:30:45 +01:00
parent 82401d52a5
commit 74e8c5bb83
9 changed files with 100 additions and 7 deletions

View File

@ -0,0 +1,8 @@
import { writable } from "svelte/store";
const store = writable<Commit[]>([]);
export default store;

View File

@ -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";