removed the need for # in the url, redirect # url to a normal /, there's now a 'page not found' page if the link is broken, profile page added with user being able to see his own blocked content #98
@ -2,9 +2,9 @@ import { Outlet } from 'react-router-dom'
|
||||
|
||||
export const FeedLayout = () => {
|
||||
return (
|
||||
<>
|
||||
<div className='InnerBodyMain'>
|
||||
<h1>WIP</h1>
|
||||
<Outlet />
|
||||
</>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
export const FeedPage = () => {
|
||||
return <h1>Feed</h1>
|
||||
return <h2>Feed</h2>
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
export const NotificationsPage = () => {
|
||||
return <h1>Notifications</h1>
|
||||
return <h2>Notifications</h2>
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user