mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-02 02:43:33 +00:00
11 lines
229 B
TypeScript
11 lines
229 B
TypeScript
|
|
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>
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
};
|