import { useIntl } from "react-intl" import useLang from "@/hooks/useLang" import styles from "./levelSummary.module.css" import type { LevelSummaryProps } from "@/types/components/overviewTable" export default function LevelSummary({ level, showDescription = true, }: LevelSummaryProps) { const lang = useLang() const intl = useIntl() return (
{level.description}
)}