import React, { useState } from "react"; export interface IUser { name: string; age: number; } const App = () => { return (