diff --git a/src/games/GamesBrowser.tsx b/src/games/GamesBrowser.tsx index a025b85..f00f70b 100644 --- a/src/games/GamesBrowser.tsx +++ b/src/games/GamesBrowser.tsx @@ -1,6 +1,7 @@ import React, { useState } from "react"; import games from "./games"; import { useUser } from "../user-context"; +import SmoothCollapse from "react-smooth-collapse"; function GamesBrowser() { const { user } = useUser(); @@ -21,14 +22,16 @@ function GamesBrowser() {

handleTitleClick(id)}> - {open ? "🞃" : "🞂"} {title} + {title}

{done ? "✅" : ""}

- {open && } + + + })}