From 07ad8316dd7a6321d99d89a133bea3917daa52f7 Mon Sep 17 00:00:00 2001 From: Matz Hilven Date: Tue, 28 May 2024 23:20:24 +0200 Subject: [PATCH] fix: import/export --- src/components/ProjectCard.tsx | 2 ++ src/typings/project.ts | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/ProjectCard.tsx b/src/components/ProjectCard.tsx index 39065f4..5885514 100644 --- a/src/components/ProjectCard.tsx +++ b/src/components/ProjectCard.tsx @@ -1,3 +1,5 @@ +import { Project } from '@/typings/project' + type Props = { project: Project } diff --git a/src/typings/project.ts b/src/typings/project.ts index a66bc13..6cff2ea 100644 --- a/src/typings/project.ts +++ b/src/typings/project.ts @@ -7,7 +7,7 @@ type Tag = MinecraftTags | WebTags | 'Archived' type Category = 'Minecraft' | 'Web' | 'Discord' | 'Misc' | 'Unity' -type Project = { +export type Project = { name: string description: string category: Category