type Props = {}- это type alias. Подробнее в документации: www.typescriptlang.org/docs/handbook/advanced-type... или https://flow.org/en/docs/types/aliases/
export function homePageProfileAction(list, name) {
return (dispatch) => {
dispatch(homePageProfileFetchId(list, name));
const promises = list.map(v => getUserHome(v));
Promise.all(promises)
.then((res) => {
dispatch(homePageProfileFetchSuccess(res, "top"));
})
.catch(err => {console.log(err); });
};
}
Uncaught Error: jCarousel: No width/height set for items. This will cause an infinite loop. Aborting...
itemFallbackDimension: 300
jQuery('#mycarousel-1').jcarousel({
horisontal: true,
wrap:'circular',
scroll:1,
easing:'easeInOutBack',
itemFallbackDimension: 300