import React from "react"; import {Faj, FajDescription, FajLabel, FajSpecials} from "../domain-models/faj"; import {UseFormRegisterReturn} from "react-hook-form"; function FajSelector(props: { register: () => UseFormRegisterReturn, currentFaj: () => Faj }) { const {register, currentFaj} = props return <>

{FajDescription(currentFaj())}

} export default FajSelector