import { useState } from 'react'; import { Button } from '../common/button'; export const Ping = () => { const [pings, setPings] = useState([]); const [key, setKey] = useState('defaultkey'); return ( <>
Ping
setKey(e.target.value)} />
); };