Rewrite the post composer as a modal

This commit is contained in:
Paul Frazee 2022-09-05 14:16:48 -05:00
parent 41bbe2b60b
commit cb310ab1c1
12 changed files with 207 additions and 144 deletions

View file

@ -6,7 +6,6 @@ import {Notifications} from './screens/Notifications'
import {Login} from './screens/Login'
import {Signup} from './screens/Signup'
import {NotFound} from './screens/NotFound'
import {Composer} from './screens/Composer'
import {PostThread} from './screens/PostThread'
import {PostLikedBy} from './screens/PostLikedBy'
import {PostRepostedBy} from './screens/PostRepostedBy'
@ -48,7 +47,6 @@ export const routes: Route[] = [
'retweet',
r('/profile/(?<name>[^/]+)/post/(?<recordKey>[^/]+)/reposted-by'),
],
[Composer, 'pen-nib', r('/compose')],
[Login, ['far', 'user'], r('/login')],
[Signup, ['far', 'user'], r('/signup')],
]