mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-05-31 19:15:17 +02:00
7 lines
202 B
TypeScript
7 lines
202 B
TypeScript
import App from "./app";
|
|
import { requireActiveBillingSubscription } from '@/app/lib/billing';
|
|
|
|
export default async function Page() {
|
|
await requireActiveBillingSubscription();
|
|
return <App />
|
|
}
|