aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/TwoColumnLayout.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/app/components/TwoColumnLayout.tsx')
-rw-r--r--frontend/app/components/TwoColumnLayout.tsx12
1 files changed, 6 insertions, 6 deletions
diff --git a/frontend/app/components/TwoColumnLayout.tsx b/frontend/app/components/TwoColumnLayout.tsx
index 68eab32..83640ec 100644
--- a/frontend/app/components/TwoColumnLayout.tsx
+++ b/frontend/app/components/TwoColumnLayout.tsx
@@ -1,13 +1,13 @@
import React from "react";
type Props = {
- children: React.ReactNode;
+ children: React.ReactNode;
};
export default function TwoColumnLayout({ children }: Props) {
- return (
- <div className="grow grid grid-cols-1 md:grid-cols-2 md:divide-x divide-gray-300">
- {children}
- </div>
- );
+ return (
+ <div className="grow grid grid-cols-1 md:grid-cols-2 md:divide-x divide-gray-300">
+ {children}
+ </div>
+ );
}