import { AppShell, Container, Flex, Grid, Header, Image, MediaQuery, Skeleton, Title, } from '@mantine/core'; import { ThemeButton } from '/@/remote/components/buttons/theme-button'; import { ImageButton } from '/@/remote/components/buttons/image-button'; import { RemoteContainer } from '/@/remote/components/remote-container'; import { ReconnectButton } from '/@/remote/components/buttons/reconnect-button'; import { useConnected } from '/@/remote/store'; export const Shell = () => { const connected = useConnected(); return (
Feishin Remote
} padding="md" > {connected ? ( ) : ( )}
); };