// views/MainView.jsx import React from "react"; import { Typography, Button, Flex, Space } from "antd"; import { ReactComponent as LogoHorizontal } from "./logo-horizontal.svg"; import { ReactComponent as LogoVertical } from "./logo-vertical.svg"; import { useMediaQuery } from "react-responsive"; const { Paragraph } = Typography; const MainView = ({ setCurrentView }) => { const isMobile = useMediaQuery({ maxWidth: 600 }); return (
{isMobile ? ( ) : ( )}
{isMobile ? ( ) : ( )}
); }; export default MainView;