import Post from 'src/components/Post' export const QUERY = gql` query FIND_POST_BY_ID($id: Int!) { post: post(id: $id) { id title body createdAt } } ` export const Loading = () =>
Loading...
export const Empty = () =>
Post not found
export const Success = ({ post }) => { return }