diff --git a/packages/app/src/pages/account/tabs/posts.jsx b/packages/app/src/pages/account/tabs/posts.jsx index b2d8eb28..d4530f58 100755 --- a/packages/app/src/pages/account/tabs/posts.jsx +++ b/packages/app/src/pages/account/tabs/posts.jsx @@ -1,15 +1,19 @@ import React from "react" -import { Skeleton } from "antd" +import { Skeleton, Result } from "antd" -import { PostsList } from "components" import Post from "models/post" +import { PostsList } from "components" +import { Icons } from "components/Icons" + const emptyListRender = () => { - return
+ return } + >

- This user has no posts yet. + It's seems this user has no public post, yet.

-
+ } export default class UserPosts extends React.Component {