import { useState } from 'react'; export default function Button(props) { const [loading, setLoading] = useState(false); return( ); }