add weather module
This commit is contained in:
@@ -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>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user