feishin/src/renderer/features/action-required/components/server-required.tsx

11 lines
229 B
TypeScript
Raw Normal View History

2022-12-19 15:59:14 -08:00
import { Text } from '/@/renderer/components';
export const ServerRequired = () => {
return (
<>
<Text size="xl">No server selected.</Text>
<Text>Add or select a server in the file menu.</Text>
</>
);
};