Add lists and profilelist screens

This commit is contained in:
Paul Frazee
2023-05-04 20:49:55 -05:00
parent d3e8bd3e9a
commit 8f408d57e9
9 changed files with 99 additions and 0 deletions
+18
View File
@@ -201,6 +201,24 @@ export const DesktopLeftNav = observer(function DesktopLeftNav() {
}
label="Notifications"
/>
<NavItem
href="/lists"
icon={
<FontAwesomeIcon
icon="list-ul"
style={pal.text as FontAwesomeIconStyle}
size={20}
/>
}
iconFilled={
<FontAwesomeIcon
icon="list-ul"
style={pal.text as FontAwesomeIconStyle}
size={20}
/>
}
label="Lists"
/>
{store.session.hasSession && (
<NavItem
href={`/profile/${store.me.handle}`}