Education:
import styles from './styles.module.css';
import NewsItem from '../NewsItem/NewsItem';
import withSkeleton from '../../helpers/hocs/withSkeleton';
const NewsList = ({ news }) => {
return (
{news.map((item) => {
return
})}
)
}
const NewsListWithSkeleton = withSkeleton(NewsList, 'item', 10)
export default NewsListWithSkeleton;