diff options
Diffstat (limited to 'frontend/app/components/ThreeColumnLayout.tsx')
| -rw-r--r-- | frontend/app/components/ThreeColumnLayout.tsx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/frontend/app/components/ThreeColumnLayout.tsx b/frontend/app/components/ThreeColumnLayout.tsx index d2a5ba5..694b9cb 100644 --- a/frontend/app/components/ThreeColumnLayout.tsx +++ b/frontend/app/components/ThreeColumnLayout.tsx @@ -1,13 +1,13 @@ import React from "react"; type Props = { - children: React.ReactNode; + children: React.ReactNode; }; export default function ThreeColumnLayout({ children }: Props) { - return ( - <div className="grow grid grid-cols-1 md:grid-cols-3 md:divide-x divide-gray-300"> - {children} - </div> - ); + return ( + <div className="grow grid grid-cols-1 md:grid-cols-3 md:divide-x divide-gray-300"> + {children} + </div> + ); } |
