import "./NewsSection.scss"; import Image from "next/image"; import Link from "next/link"; import { getNews } from "./newsSectionStore"; import SectionHeader from "@/entities/SectionHeader/SectionHeader"; import arrow_icon from "./icons/arrow-right.svg"; import NewsCard from "@/entities/NewsCard/NewsCard"; const NewsSection = async () => { const news = await getNews(); return (
Читать Arrow Right Icon
); }; export default NewsSection;