import React, { useState } from 'react'; import { Link } from 'react-router'; import styled from 'styled-components'; import Header from '../../components/mobile/Header'; import Screen from '../../components/mobile/MobileScreen'; import { ExitIcon } from '../../common/Icons'; const IconLinkWrapper = styled(Link)` width: 2rem; margin-right: 1.25rem; margin-left: none; `; const MobileSketchView = (props) => { const [overlay, setOverlay] = useState(null); return (

Hello

{/*

{selectedFile.name}

*/}
{/*
setOverlay('preferences')}> setOverlay('runSketch')}>
*/}
); }; export default MobileSketchView;