a249fb038c
- Add Word document parsing and translation export - Add database configuration management - Add AI/LLM translation configuration - Add translation vocabulary management - Add export settings (colors, page orientation, headers) - Separate database and AI configurations - Add debounced search to prevent database overload
8 lines
206 B
TypeScript
8 lines
206 B
TypeScript
"use client";
|
|
|
|
import { ToastProvider } from "@/components/ui/toast";
|
|
|
|
export default function Providers({ children }: { children: React.ReactNode }) {
|
|
return <ToastProvider>{children}</ToastProvider>;
|
|
}
|