"use client"; import { Text } from "@mantine/core"; import { useState } from "react"; export default function ComponentGlobal_InputCountDown({ maxInput, lengthInput, }: { maxInput: number; lengthInput: number; }) { return ( <> {maxInput - lengthInput < 0 ? 0 : maxInput - lengthInput} /{" "} {maxInput} ); }