import { useMemo } from "react"; import type { Health, World } from "~/utils/saerro"; import { IndexWorld } from "./index-world"; import * as styles from "./index-world-container.css"; export const WorldContainer = ({ worlds, health, }: { worlds: World[]; health: Health; }) => (
{worlds.map((world) => ( world.name.toLowerCase() === w.name)} /> ))}
);