From aa012b19ca31ce86993f9b8eb50e612366249f01 Mon Sep 17 00:00:00 2001 From: Abhas Bhattacharya Date: Mon, 2 Apr 2018 02:36:44 +0530 Subject: [PATCH] Fix SingleInstanceForecast export bug --- src/Components/SingleDayForecast/Component.tsx | 2 +- src/Components/SingleInstanceForecast/index.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Components/SingleDayForecast/Component.tsx b/src/Components/SingleDayForecast/Component.tsx index bed2397..90e6c0d 100644 --- a/src/Components/SingleDayForecast/Component.tsx +++ b/src/Components/SingleDayForecast/Component.tsx @@ -2,7 +2,7 @@ import * as React from 'react'; import './Component.css'; import '../../../node_modules/open-weather-icons/dist/css/open-weather-icons.css'; import { Forecast5DaysSeperated, ForecaseAtInstance, Utils } from '../../Utils'; -import { SingleInstanceForecast } from '../SingleInstanceForecast/Component'; +import { SingleInstanceForecast } from '../SingleInstanceForecast'; export interface SingleDayForecastProps { forecastCurrentDay: Array; diff --git a/src/Components/SingleInstanceForecast/index.tsx b/src/Components/SingleInstanceForecast/index.tsx index c70ccea..6fc410c 100644 --- a/src/Components/SingleInstanceForecast/index.tsx +++ b/src/Components/SingleInstanceForecast/index.tsx @@ -1 +1 @@ -export { SingleDayForecast } from './Component'; \ No newline at end of file +export { SingleInstanceForecast } from './Component'; \ No newline at end of file