11 lines
177 B
TypeScript
Raw Normal View History

2024-10-23 17:52:53 +02:00
import { Outlet } from 'react-router-dom'
export const FeedLayout = () => {
return (
<div className='InnerBodyMain'>
2024-10-23 17:52:53 +02:00
<h1>WIP</h1>
<Outlet />
</div>
2024-10-23 17:52:53 +02:00
)
}