From 0a00f63b54b1b8171e4a18f9b326aa58d940eb1c Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Mon, 11 Oct 2021 18:30:07 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Make=20`GroupCreateBox`=20collap?= =?UTF-8?q?sible?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/group/GroupCreateBox.tsx | 60 ++++++++++--------- 1 file changed, 32 insertions(+), 28 deletions(-) diff --git a/frontend/src/components/group/GroupCreateBox.tsx b/frontend/src/components/group/GroupCreateBox.tsx index 67d84ef..e782aa5 100644 --- a/frontend/src/components/group/GroupCreateBox.tsx +++ b/frontend/src/components/group/GroupCreateBox.tsx @@ -1,4 +1,4 @@ -import {Box, Form, Heading, useFormState} from "@steffo/bluelib-react" +import {Box, Details, Form, useFormState} from "@steffo/bluelib-react" import * as React from "react" import {useAuthorizationContext} from "../../contexts/authorization" import {ManagedViewSet, useManagedViewSet} from "../../hooks/useManagedViewSet" @@ -66,33 +66,37 @@ export function GroupCreateBox({viewSet}: GroupCreateBoxProps): JSX.Element | nu return ( - - Create a new group - -
- - 0 ? true : undefined}/> - - - - - - - - - - Create - - - +
+ + Create a new group + + +
+ + 0 ? true : undefined}/> + + + + + + + + + + Create + + + +
+
) }