add restore functionality

This commit is contained in:
Calli
2023-06-23 22:20:58 +03:00
parent 808d983bd1
commit ed13e73587
7 changed files with 120 additions and 2 deletions

View File

@@ -7,6 +7,7 @@ import { CharacterContext } from "../context/Context";
import { DowloadButton } from "./Backup/DowloadButton";
import { DiscordButton } from "./Discord/DiscordButton";
import { GitHubButton } from "./Github/GitHubButton";
import { UploadButton } from "./Backup/UploadButton";
interface Grouped {
[key: string]: AccessToken[];
@@ -28,6 +29,7 @@ export const MainGrid = ({ sessionReady }: { sessionReady: boolean }) => {
<Stack direction="row" spacing={1}>
<LoginButton />
<DowloadButton />
<UploadButton />
<DiscordButton />
<GitHubButton />
</Stack>