aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/TitledColumn.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/app/components/TitledColumn.tsx')
-rw-r--r--frontend/app/components/TitledColumn.tsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/frontend/app/components/TitledColumn.tsx b/frontend/app/components/TitledColumn.tsx
index 4272ad4..a26271b 100644
--- a/frontend/app/components/TitledColumn.tsx
+++ b/frontend/app/components/TitledColumn.tsx
@@ -3,11 +3,12 @@ import React from "react";
type Props = {
children: React.ReactNode;
title: React.ReactNode;
+ className?: string;
};
-export default function TitledColumn({ children, title }: Props) {
+export default function TitledColumn({ children, title, className }: Props) {
return (
- <div className="p-4 flex flex-col gap-4">
+ <div className={`p-4 flex flex-col gap-4 ${className}`}>
<div className="text-center text-xl font-bold">{title}</div>
{children}
</div>