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