From c3f74130ea1f5330089d15611f02a494cb887d62 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sun, 16 Apr 2023 03:47:30 -0700 Subject: [PATCH] Move UpdateToast to toasts folder --- components/Layout/index.tsx | 2 +- components/{about => toasts}/UpdateToast/index.scss | 0 components/{about => toasts}/UpdateToast/index.tsx | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename components/{about => toasts}/UpdateToast/index.scss (100%) rename components/{about => toasts}/UpdateToast/index.tsx (100%) diff --git a/components/Layout/index.tsx b/components/Layout/index.tsx index 6f1505d9..a77014c5 100644 --- a/components/Layout/index.tsx +++ b/components/Layout/index.tsx @@ -6,7 +6,7 @@ import { getCookie } from 'cookies-next' import { appState } from '~utils/appState' import TopHeader from '~components/Header' -import UpdateToast from '~components/about/UpdateToast' +import UpdateToast from '~components/toasts/UpdateToast' import './index.scss' diff --git a/components/about/UpdateToast/index.scss b/components/toasts/UpdateToast/index.scss similarity index 100% rename from components/about/UpdateToast/index.scss rename to components/toasts/UpdateToast/index.scss diff --git a/components/about/UpdateToast/index.tsx b/components/toasts/UpdateToast/index.tsx similarity index 100% rename from components/about/UpdateToast/index.tsx rename to components/toasts/UpdateToast/index.tsx