import React, { useState, useEffect } from 'react' import { NextPage } from 'next' import axios from 'axios' const Home: NextPage = () => { const [links, setLinks] = useState([] as string[]) useEffect(() => { axios.get('https://api.fantus.studio/directus/items/mixes?status=published') .then(({ data }) => { setLinks(data.data.map((entry: any) => entry.link)) }) }, []) return
collection of some sets made here and there.