import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger, } from "@/components/ui/dialog" import { getCurrentUser } from "@/lib/auth" import { getCategories } from "@/models/categories" import { getCurrencies } from "@/models/currencies" import { getProjects } from "@/models/projects" import { getSettings } from "@/models/settings" import TransactionCreateForm from "./create" export async function NewTransactionDialog({ children }: { children: React.ReactNode }) { const user = await getCurrentUser() const categories = await getCategories(user.id) const currencies = await getCurrencies(user.id) const settings = await getSettings(user.id) const projects = await getProjects(user.id) return ( {children} New Transaction Create a new transaction ) }