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