diff --git a/components/content.tsx b/components/content.tsx index ccb688c..5fc7ec2 100644 --- a/components/content.tsx +++ b/components/content.tsx @@ -1,10 +1,12 @@ -function Item({ item }) { +import ItemInterface from 'data/data-types'; + +function Item({ item }: { item: ItemInterface }) { return (
@@ -29,7 +30,7 @@ export default function SignIn() {