kgroad-frontend2/src/Pages/NewsPage/NewsPage.tsx

15 lines
317 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import HeaderText from "@/Shared/UI/HeaderText/HeaderText";
import "./NewsPage.scss";
import NewsList from "@/Widgets/NewsList/NewsList";
const NewsPage = () => {
return (
<div className="news-page">
<HeaderText>Новости</HeaderText>
<NewsList />
</div>
);
};
export default NewsPage;