import React from "react"; import {AllJellemIDs, GetJellem, JellemID} from "../domain-models/jellem"; function JellemSelector(props: {selected: JellemID, changeJellem: (val: JellemID) => void}) { const { selected, changeJellem } = props const jellem = GetJellem(selected) return <>
{jellem.Description}