import React from 'react' import { useRouter } from 'next/router' import Party from '~components/Party' import * as AlertDialog from '@radix-ui/react-alert-dialog' const PartyRoute: React.FC = () => { const router = useRouter() const { party: slug } = router.query return (
) // function renderNotFound() { // return ( //
//

There's no grid here.

// //
// ) // } // if (!found && !loading) { // return renderNotFound() // } else if (found && !loading) { // return render() // } else { // return (
) // } } export default PartyRoute