import React from "react"; import { Box, makeStyles, Theme, Typography } from "@material-ui/core"; import logo from "../assets/logo.svg"; import doctrIcon from "../assets/doctr.svg"; import { COLORS, FONTS } from "@mindee/web-elements.assets"; const COMPONENT_ID = "MobileView"; const useStyles = makeStyles((theme: Theme) => ({ wrapper: {}, logoContainer: {}, logo: { height: 28, }, icon: { width: 28, marginBottom: 4, height: 28, }, link: { color: COLORS.blue, textDecoration: "underline", }, })); export default function MobileView(): JSX.Element { const classes = useStyles(); return ( Welcome to the docTR by mindee live demo page This demo requires advanced capabilities and can’t be performed on mobile devices.

Please retry the demo on a computer.

To know more about{" "} docTR {" "} check out the dedicated{" "} Github repository .
Copyright © 2021 Mindee. All rights reserved
); }