legalgo-FE-reactrouter/app/routes/_layout.news.tsx

14 lines
199 B
TypeScript
Raw Normal View History

import { Outlet } from 'react-router'
import { NewsPage } from '~/pages/news'
const NewsLayout = () => {
return (
<NewsPage>
<Outlet />
</NewsPage>
)
}
export default NewsLayout