From bd171a10bf9c3fe67f01e9ca3da49b84536ac5a8 Mon Sep 17 00:00:00 2001 From: strNophix Date: Tue, 4 Oct 2022 18:03:07 +0200 Subject: [PATCH] Moved types into seperate folder --- client/src/components/SideNavChannel.tsx | 2 +- client/src/{types.ts => types/index.ts} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename client/src/{types.ts => types/index.ts} (100%) diff --git a/client/src/components/SideNavChannel.tsx b/client/src/components/SideNavChannel.tsx index 8922c5e..314c7f2 100644 --- a/client/src/components/SideNavChannel.tsx +++ b/client/src/components/SideNavChannel.tsx @@ -1,7 +1,7 @@ import { FC } from 'react'; -import { numFormatter } from '../utils/format'; import { Stream } from '../types'; +import { numFormatter } from '../utils/format'; interface SideNavChannelProps { stream: Stream; diff --git a/client/src/types.ts b/client/src/types/index.ts similarity index 100% rename from client/src/types.ts rename to client/src/types/index.ts