/** * @copyright nhcarrigan * @license Naomi's Public License * @author Naomi Carrigan */ import { Game } from "../../components/game"; import { Rule } from "../../components/rule"; import { Games } from "../../config/Games"; import type { JSX } from "react"; /** * Renders the /games page. * @returns A React Component. */ const Gamez = (): JSX.Element => { return (

{`Games`}

{`See how Naomi has appeared in various games.`}

{Games.toSorted((a, b) => { return a.name.localeCompare(b.name); }).map((game) => { return ( ); })}
); }; export default Gamez;