aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/BorderedContainer.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/app/components/BorderedContainer.tsx')
-rw-r--r--frontend/app/components/BorderedContainer.tsx18
1 files changed, 9 insertions, 9 deletions
diff --git a/frontend/app/components/BorderedContainer.tsx b/frontend/app/components/BorderedContainer.tsx
index a1bff35..ec6c00e 100644
--- a/frontend/app/components/BorderedContainer.tsx
+++ b/frontend/app/components/BorderedContainer.tsx
@@ -1,16 +1,16 @@
import React from "react";
type Props = {
- children: React.ReactNode;
- className?: string;
+ children: React.ReactNode;
+ className?: string;
};
export default function BorderedContainer({ children, className }: Props) {
- return (
- <div
- className={`bg-white border-2 border-brand-600 rounded-xl p-4 ${className}`}
- >
- {children}
- </div>
- );
+ return (
+ <div
+ className={`bg-white border-2 border-brand-600 rounded-xl p-4 ${className}`}
+ >
+ {children}
+ </div>
+ );
}