diff options
author | 2024-09-11 23:22:12 +0100 | |
---|---|---|
committer | 2024-09-11 23:22:12 +0100 | |
commit | 8a8792738853e8fca3bd35c82beeea395102ff7a (patch) | |
tree | 9d14b7dcafcf1069a8d8a031d25ae956ebe943cb | |
parent | Use new useMediaQuery hook to determine dark theme (diff) |
Remove unused imports from App.tsx
-rw-r--r-- | thallium-frontend/src/App.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/thallium-frontend/src/App.tsx b/thallium-frontend/src/App.tsx index 10c3ff6..f5512af 100644 --- a/thallium-frontend/src/App.tsx +++ b/thallium-frontend/src/App.tsx @@ -1,5 +1,5 @@ import styled, { createGlobalStyle, ThemeProvider } from "styled-components"; -import React, { Suspense, useEffect, useState } from "react"; +import React, { Suspense } from "react"; import { createBrowserRouter, RouterProvider, |