Simplified server-related styles and removed default export from NoMenuLayout

This commit is contained in:
Alejandro Celaya
2021-12-30 10:02:31 +01:00
parent 7794876d7c
commit f07e7fd31c
12 changed files with 17 additions and 23 deletions

View File

@@ -12,7 +12,7 @@ interface ServerFormProps {
}
const FormGroup: FC<FormGroupContainerProps> = (props) =>
<FormGroupContainer {...props} labelClassName="create-server__label" />;
<FormGroupContainer {...props} labelClassName="server-form__label" />;
export const ServerForm: FC<ServerFormProps> = ({ onSubmit, initialValues, children, title }) => {
const [ name, setName ] = useState('');