import Typography from "@/shared/ui/components/Typography/Typography"; import "./News.scss"; import { apiInstance } from "@/shared/config/apiConfig"; import { INewsList } from "@/shared/types/news-type"; import NewsCard from "@/entities/NewsCard/NewsCard"; const News = async () => { const getNews = async () => { const response = await apiInstance.get("/news/"); return response.data; }; const data = await getNews(); return (
Новости
); }; export default News;