Bak bu links.js olsun
const spotifyYerliLinks = [
`spotify://track/1?nocache=${timestamp}`,
`spotify://track/2?nocache=${timestamp}`,
// Daha fazla link ekleyebilirsiniz. ];
export default spotifyYerliLinksSonra kullanacağın dosyaya imoort et ve istediğin link in index sayısına göre çek.
import { spotifyYerliLinks } from './links.js';
// Örnek: Bir butona link atama
const ButtonComponent = () => {
return (
<div>
<button href={spotifyYerliLinks[0]}>Link 1</button>
<button href={spotifyYerliLinks[1]}>Link 2</button>
</div>
);
};
export default ButtonComponent;