import { AppConfig } from '@app/configs'
import { metaSetter } from '@app/utils'
import Head from 'next/head'
import Link from 'next/link'
import Script from 'next/script'
function Playground() {
return (
Loading GraphQL Playground
)
}
export default metaSetter(
{ Playground },
{
title: 'A11yWatch graphQL playground',
description:
'GraphQL playground to test the A11yWatch endpoints and learn the schemas.',
}
)