ChrQR
a1b7c12821
All checks were successful
Docker Build & Publish / Build Docker (push) Successful in 1m8s
24 lines
744 B
TypeScript
24 lines
744 B
TypeScript
import { Forecast } from "@/types/types";
|
|
import DailyCard from "./DailyCard";
|
|
|
|
export default function CardContainer(props: { weather: Forecast }) {
|
|
const weather = props.weather;
|
|
return (
|
|
<div className="p-2 flex overflow-x-scroll md:overflow-hidden md:justify-center w-full">
|
|
{weather.daily &&
|
|
weather.daily.apparent_temperature_max.map(
|
|
(temp, index) =>
|
|
index > 0 &&
|
|
index < 7 && ( // Ensure we only render the next 6 days
|
|
<DailyCard
|
|
key={index}
|
|
temperature={temp}
|
|
weatherCode={weather.daily.weather_code[index]}
|
|
time={weather.daily.time[index]}
|
|
/>
|
|
)
|
|
)}
|
|
</div>
|
|
);
|
|
}
|