import React, { useState } from 'react'; const RadicalWidget: React.FC = () => { const [power, setPower] = useState(3); const [root, setRoot] = useState(2); return (
The Golden Rule: The top number stays with x (power), the bottom number becomes the root.
Exponent {power} goes inside. Root {root} goes outside.