aboutsummaryrefslogtreecommitdiff
path: root/src/store/initialStates.ts
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-06-08 14:20:57 -0400
committerIvan Chen <ivan@tagg.id>2021-06-08 16:18:34 -0400
commitf8dd6b8ef033039278e2931876488c307f5d5adc (patch)
tree3303e77f4a8991b8ff9c95b638849efa23b32b7b /src/store/initialStates.ts
parent96a80c53fcc0b5815b56f0ed0b48d152a6c6e2a4 (diff)
Create MomentPostType
Diffstat (limited to 'src/store/initialStates.ts')
-rw-r--r--src/store/initialStates.ts11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/store/initialStates.ts b/src/store/initialStates.ts
index e2902a2d..92a1e456 100644
--- a/src/store/initialStates.ts
+++ b/src/store/initialStates.ts
@@ -1,14 +1,17 @@
-import {CommentThreadType, UniversityType} from './../types/types';
import {
- MomentType,
NotificationType,
- ProfilePreviewType,
ProfileInfoType,
+ ProfilePreviewType,
ScreenType,
SocialAccountType,
UserType,
UserXType,
} from '../types';
+import {
+ CommentThreadType,
+ MomentPostType,
+ UniversityType,
+} from './../types/types';
export const NO_PROFILE: ProfileInfoType = {
biography: '',
@@ -29,7 +32,7 @@ export const NO_PROFILE: ProfileInfoType = {
is_private: true,
};
-export const EMPTY_MOMENTS_LIST = <MomentType[]>[];
+export const EMPTY_MOMENTS_LIST = <MomentPostType[]>[];
export const EMPTY_NOTIFICATIONS_LIST = <NotificationType[]>[];