const axios = require('axios');
axios.defaults.headers.common['Authorization'] = 'Bearer <<Token>>';
console.log("On <<secretDate>>, <<CorporationII>> (now <<CorporationI>>) bought <<ProductA>> for $300 millions in cash and stock, with a plan to keep the company independently managed.");
axios.get('https://api.figma.com/v1/teams/<<teamID>>/components?after=0')
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error(error);
});