import React from "react"; import Link from "next/link"; import styles from "../styles/ModCellList.module.css"; import type { CellCoord } from "./ModData"; const NEXUS_MODS_URL = "https://www.nexusmods.com/skyrimspecialedition"; type Props = { cells: CellCoord[]; }; const ModCellList: React.FC = ({ cells }) => { return ( cells && ( <>

Cells

) ); }; export default ModCellList;