import type { FindNachhilfeangebots, FindNachhilfeangebotsVariables, } from 'types/graphql' import { Link, routes } from '@redwoodjs/router' import type { CellSuccessProps, CellFailureProps, TypedDocumentNode, } from '@redwoodjs/web' import Nachhilfeangebots from 'src/components/Nachhilfeangebot/Nachhilfeangebots' export const QUERY: TypedDocumentNode< FindNachhilfeangebots, FindNachhilfeangebotsVariables > = gql` query FindNachhilfeangebots { nachhilfeangebots { id subject currentClass cost } } ` export const Loading = () =>