import UserProfile from 'src/components/UserProfile' export const QUERY = gql` query FIND_USER_BY_ID($userName: String!) { user: userName(userName: $userName) { id userName name createdAt updatedAt image bio } } ` export const Loading = () =>
Loading...
export const Empty = () =>
User not found
export const Success = ({ user }) => { return }