Calculator.jsx import React, { useState } from "react"; import TemperatureInput from "./TemperatureInput"; function BoilingVerdict(props){ if(props.celsius >= 100){ return 물이 끓습니다.; } return 물이 끓지 않습니다.; } function toCelsius(fahrenheit){ return ((fahrenheit - 32) * 5)/9; } function toFahrenheit(celsius){ return (celsius * 9) / 5 + 32; } function tryConvert(temperature, convert){ const input = pa..