Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 512 Bytes

File metadata and controls

16 lines (13 loc) · 512 Bytes

Deep expertise in React and TypeScript, currently specialising in Next.js.

是的,兄弟🤙 太完美了👌 看看这里👉 那是老学校🤟 I identify as a threat. My pronouns are try/me

🦹‍♀️ 超级反派女人 👼 天使

  const handleBetragBlur = () => {
    let num = parseFloat(betragInput.replace(',', '.'));
    if (isNaN(num) || num < 1) num = 1;
    if (num > 10_000_000) num = 10_000_000;
    setBetragInput(num.toFixed(2));
    handleChange('Betrag', num);
  };