aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlonkaars <l.leblansch@gmail.com>2021-01-07 09:32:13 +0100
committerlonkaars <l.leblansch@gmail.com>2021-01-07 09:32:13 +0100
commite3cc72181c9957f0a95bb9d89b7ab6a18f0a861b (patch)
tree3d20810fcbf7dc1e142c3ff676c3f094b0c59756
parent492fb773617f7af2d03c662d20f3967dc929375d (diff)
vierkant.tsx -> ui.tsx
-rw-r--r--src/components/dialogBox.tsx2
-rw-r--r--src/components/ui.tsx (renamed from src/components/vierkant.tsx)0
-rw-r--r--src/pages/home.tsx2
-rw-r--r--src/pages/settings.tsx2
4 files changed, 3 insertions, 3 deletions
diff --git a/src/components/dialogBox.tsx b/src/components/dialogBox.tsx
index 778cd7a..74fe99b 100644
--- a/src/components/dialogBox.tsx
+++ b/src/components/dialogBox.tsx
@@ -1,6 +1,6 @@
import { ReactNode } from 'react';
-import { Vierkant } from './vierkant';
+import { Vierkant } from './ui';
import CancelIcon from '@material-ui/icons/Cancel';
diff --git a/src/components/vierkant.tsx b/src/components/ui.tsx
index 558eab8..558eab8 100644
--- a/src/components/vierkant.tsx
+++ b/src/components/ui.tsx
diff --git a/src/pages/home.tsx b/src/pages/home.tsx
index 7196fc4..3b279e8 100644
--- a/src/pages/home.tsx
+++ b/src/pages/home.tsx
@@ -2,7 +2,7 @@ import { CSSProperties } from 'react';
import { NavBar } from '../components/navbar';
import { CenteredPage, PageTitle } from '../components/page';
-import { Vierkant } from '../components/vierkant';
+import { Vierkant } from '../components/ui';
import { AccountAvatar } from '../components/account';
import VideogameAssetIcon from '@material-ui/icons/VideogameAsset';
diff --git a/src/pages/settings.tsx b/src/pages/settings.tsx
index 7460055..9446a5f 100644
--- a/src/pages/settings.tsx
+++ b/src/pages/settings.tsx
@@ -1,6 +1,6 @@
import { NavBar } from '../components/navbar';
import { CenteredPage, PageTitle } from '../components/page';
-import { Vierkant } from '../components/vierkant';
+import { Vierkant } from '../components/ui';
/* import { AccountAvatar } from '../components/account'; */
export default function SettingsPage() {