fix: add missing InnerBodyMain div feed layout
All checks were successful
Release to Staging / build_and_release (push) Successful in 43s

This commit is contained in:
enes 2024-10-24 11:12:31 +02:00
parent 9b8bf01d33
commit 84cb5b6912
3 changed files with 4 additions and 4 deletions

View File

@ -2,9 +2,9 @@ import { Outlet } from 'react-router-dom'
export const FeedLayout = () => {
return (
<>
<div className='InnerBodyMain'>
<h1>WIP</h1>
<Outlet />
</>
</div>
)
}

View File

@ -1,3 +1,3 @@
export const FeedPage = () => {
return <h1>Feed</h1>
return <h2>Feed</h2>
}

View File

@ -1,3 +1,3 @@
export const NotificationsPage = () => {
return <h1>Notifications</h1>
return <h2>Notifications</h2>
}