import type { Route } from './+types' import { useLoaderData } from 'react-router' import { type Webhook } from './columns' export function meta({}: Route.MetaArgs) { return [{ title: 'Webhooks' }] } export async function loader(): Promise { return [] } export default function Page() { const data = useLoaderData() as Webhook[] return ( <>

Webhooks

Adicione webhooks para sua organização.

) }