11 lines
145 B
TypeScript
Raw Normal View History

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