eslint: no-unused

This commit is contained in:
2023-12-25 17:00:31 +01:00
parent 73660076e5
commit b6f4d33cc5
2 changed files with 0 additions and 6 deletions
@@ -1,13 +1,8 @@
import * as React from "react";
import axios from "axios";
import {useState} from "react";
type LoadingState = "not-started" | "loading" | "finished"
function logout() {
return axios.post("/Identity/Account/Logout?returnUrl=%2F")
}
function Header(props: {}) {
let [loading, setLoading] = useState("not-started" as LoadingState);