mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-21 12:49:06 +00:00
- Create constants.ts for RECORD_A_MEETING_URL - Add api-types.ts for backward compatible type exports - Update all imports from deleted api folder to new locations - Add missing React Query hooks for rooms and zulip operations - Create useApi compatibility layer for unmigrated components
8 lines
185 B
TypeScript
8 lines
185 B
TypeScript
"use client";
|
|
import { redirect } from "next/navigation";
|
|
import { RECORD_A_MEETING_URL } from "./lib/constants";
|
|
|
|
export default function Index() {
|
|
redirect(RECORD_A_MEETING_URL);
|
|
}
|