This commit is contained in:
Maciej Caderek
2022-03-02 23:50:34 +01:00
parent 05a6234389
commit 24358c1fdd
7 changed files with 210 additions and 10 deletions

View File

@@ -44,6 +44,7 @@ export type State = {
activeTab: TabName;
playing: boolean;
anonymous: boolean;
refreshHash: boolean;
};
const initialState: State = {
@@ -67,6 +68,7 @@ const initialState: State = {
activeTab: "load",
playing: false,
anonymous: false,
refreshHash: true,
};
console.log(initialState);