1
0
mirror of https://github.com/tooot-app/app synced 2025-06-05 22:19:13 +02:00

Fix regex

This commit is contained in:
Zhiyuan Zheng
2020-11-22 00:57:43 +01:00
parent 6a5d9e7fb8
commit 1c0464d9fb
3 changed files with 8 additions and 8 deletions

View File

@ -164,7 +164,7 @@ const postReducer = (state: PostState, action: PostAction): PostState => {
}
}
const PostToot: React.FC = () => {
const Compose: React.FC = () => {
const navigation = useNavigation()
const [hasKeyboard, setHasKeyboard] = useState(false)
@ -305,4 +305,4 @@ const PostToot: React.FC = () => {
}
// ;(PostMain as any).whyDidYouRender = true
export default PostToot
export default Compose