import { Link, routes } from '@redwoodjs/router' import Parts from 'src/components/Parts' export const QUERY = gql` query PARTS_OF_USER($userName: String!) { parts(userName: $userName) { id title mainImage createdAt updatedAt user { image userName } Reaction { emote } } } ` export const Loading = () =>
Loading...
export const Empty = () => { return
No parts yet.
} export const Success = ({ parts, variables: { shouldFilterPartsWithoutImage }, }) => { return ( ) }