rename all db columns

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-04-08 21:25:32 +02:00
parent 95b93b5f3a
commit 097ea18320
30 changed files with 303 additions and 232 deletions

View File

@@ -8,10 +8,11 @@ import { popModal } from '..';
interface ModalContentProps {
children: React.ReactNode;
className?: string;
}
export function ModalContent({ children }: ModalContentProps) {
return <DialogContent>{children}</DialogContent>;
export function ModalContent({ children, className }: ModalContentProps) {
return <DialogContent className={className}>{children}</DialogContent>;
}
interface ModalHeaderProps {