import React, { type FC, type PropsWithChildren } from 'react' import { HeaderMenu } from './header-menu' import { HeaderTop } from './header-top' export const NewsPage: FC = ({ children }) => { return (
{children}
) }