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

@@ -2,7 +2,7 @@ import { FC, useEffect } from 'react';
import { RouteComponentProps } from 'react-router';
import Message from '../../utils/Message';
import { isNotFoundServer, SelectedServer } from '../data';
import NoMenuLayout from '../../common/NoMenuLayout';
import { NoMenuLayout } from '../../common/NoMenuLayout';
interface WithSelectedServerProps extends RouteComponentProps<{ serverId: string }> {
selectServer: (serverId: string) => void;