add weather module

This commit is contained in:
2025-08-29 13:15:38 +02:00
parent b27be08b87
commit 69f46059e0
12 changed files with 527 additions and 9 deletions

View File

@@ -1,5 +1,11 @@
import style from "./style.module.css";
export default function Card({ active, children }) {
export default function Card({
active,
children,
}: {
active?: boolean;
children: React.ReactNode;
}) {
return <div className={style.card}>{children}</div>;
}