diff options
| author | 2024-03-20 22:25:56 +0100 | |
|---|---|---|
| committer | 2024-03-20 22:25:56 +0100 | |
| commit | b19c1877d088fbe01bcdea9fbdef282e66ab114f (patch) | |
| tree | 1cf92869c1bc5410091d84302cb48d9f5889b7e5 /src/components/App/App.tsx | |
| parent | 9a55068e5de5da19e9c3d77455b8c25f8327f896 (diff) | |
| download | client-b19c1877d088fbe01bcdea9fbdef282e66ab114f.tar.gz client-b19c1877d088fbe01bcdea9fbdef282e66ab114f.tar.bz2 client-b19c1877d088fbe01bcdea9fbdef282e66ab114f.zip | |
Started with frontend
Diffstat (limited to 'src/components/App/App.tsx')
| -rw-r--r-- | src/components/App/App.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/App/App.tsx b/src/components/App/App.tsx index b1a4501..5e17388 100644 --- a/src/components/App/App.tsx +++ b/src/components/App/App.tsx | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | import * as React from "react"; | 1 | import * as React from "react"; |
| 2 | import { ReactElement, useContext, useEffect, useMemo, useState } from "react"; | 2 | import { ReactElement, useContext, useEffect, useMemo, useState } from "react"; |
| 3 | import useRequests, { ReadyState, RequestResponse } from "~/hooks/useRequests"; | 3 | import useRequests from "~/hooks/useRequests"; |
| 4 | 4 | ||
| 5 | import styles from "~/components/App/App.module.scss"; | 5 | import styles from "~/components/App/App.module.scss"; |
| 6 | import RequestDetails from "~/components/RequestDetails/RequestDetails"; | 6 | import RequestDetails from "~/components/RequestDetails/RequestDetails"; |
| @@ -13,6 +13,7 @@ import Moon from "~/components/Icons/Moon"; | |||
| 13 | import Trash from "~/components/Icons/Trash"; | 13 | import Trash from "~/components/Icons/Trash"; |
| 14 | import { DarkModeContext } from "~/contexts/DarkMode"; | 14 | import { DarkModeContext } from "~/contexts/DarkMode"; |
| 15 | import RequestList from "~/components/RequestList/RequestList"; | 15 | import RequestList from "~/components/RequestList/RequestList"; |
| 16 | import { ReadyState, RequestResponse } from "~/types"; | ||
| 16 | 17 | ||
| 17 | interface Config { | 18 | interface Config { |
| 18 | url: string; | 19 | url: string; |
