From fff84c78162956ae3fb3bbe146b92ea242de3032 Mon Sep 17 00:00:00 2001 From: joseCorte-exe Date: Thu, 12 May 2022 15:04:30 -0300 Subject: [PATCH] :bug: fix style map card --- src/components/mapCard/MapCard.tsx | 2 +- src/components/mapCard/{style.ts => MapCardView.ts} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/components/mapCard/{style.ts => MapCardView.ts} (100%) diff --git a/src/components/mapCard/MapCard.tsx b/src/components/mapCard/MapCard.tsx index a70a738..1c5fb45 100644 --- a/src/components/mapCard/MapCard.tsx +++ b/src/components/mapCard/MapCard.tsx @@ -1,6 +1,6 @@ import React from 'react' import Image from 'next/image' -import { MapCardView } from './style' +import { MapCardView } from './MapCardView' interface MapCardInterface { title: string, diff --git a/src/components/mapCard/style.ts b/src/components/mapCard/MapCardView.ts similarity index 100% rename from src/components/mapCard/style.ts rename to src/components/mapCard/MapCardView.ts