Update Readme

This commit is contained in:
2020-08-03 00:44:11 +02:00
parent 60037e1d48
commit 1390da577b
2 changed files with 15 additions and 3 deletions

View File

@@ -25,7 +25,7 @@ const QUERY_ARTISTS = gql`
export default function App() {
const [inputValue, setInputValue] = useState('');
const [getArtists, { data, error, loading, variables }] = useLazyQuery(
const [getArtists, { data, error }] = useLazyQuery(
QUERY_ARTISTS,
);
const [artists, setArtists] = useState<Artists>([]);