\r\n {sandoneappsLogo}\r\n
\r\n \r\n );\r\n }\r\n \r\n return (\r\n
\r\n \r\n {/* {console.log(\"Render mView: \", state.mobileView)} */}\r\n {state.mobileView ? displayMobile() : displayDesktop()}\r\n \r\n \r\n );\r\n}","import styled from \"styled-components\";\r\n\r\nconst SectionContainer = styled.section`\r\n min-height: 100vh;\r\n min-width: 320px;\r\n max-width: 1366px;\r\n display: flex;\r\n margin: auto;\r\n flex: 0 1 auto;\r\n flex-direction: column;\r\n justify-content: center;\r\n text-align: center;\r\n font-size: 4em;\r\n scroll-behavior: smooth;\r\n position: 'relative';\r\n`;\r\n\r\nexport default SectionContainer;\r\n","import React from \"react\";\r\nimport { makeStyles, useScrollTrigger, Zoom, } from \"@material-ui/core\";\r\n\r\nconst useStyles = makeStyles((theme) => ({\r\n root: {\r\n position: 'fixed',\r\n bottom: theme.spacing(2),\r\n right: theme.spacing(2),\r\n },\r\n}));\r\n\r\nexport default function ScrollTop(props) {\r\n const { children, window } = props;\r\n const classes = useStyles();\r\n // Note that you normally won't need to set the window ref as useScrollTrigger\r\n // will default to window.\r\n // This is only being set here because the demo is in an iframe.\r\n const trigger = useScrollTrigger({\r\n target: window ? window() : undefined,\r\n disableHysteresis: true,\r\n threshold: 100,\r\n });\r\n\r\n const handleClick = (event) => {\r\n const anchor = (event.target.ownerDocument || document).querySelector('#back-to-top-anchor');\r\n\r\n if (anchor) {\r\n // console.log(\"ScrollTop Event: \", anchor);\r\n anchor.scrollIntoView({ behavior: 'smooth', block: 'center' });\r\n }\r\n else {\r\n console.log(\"No anchor\");\r\n }\r\n };\r\n\r\n return (\r\n
\r\n \r\n {children}\r\n
\r\n \r\n );\r\n}","import React from \"react\";\r\nimport { Typography, Paper, Grid, Fab } from \"@material-ui/core\";\r\nimport KeyboardArrowUpIcon from \"@material-ui/icons/KeyboardArrowUp\";\r\nimport { ScrollingProvider, Section } from \"react-scroll-section\";\r\n\r\nimport SectionContainer from \"../containers/SectionContainer\"\r\nimport ScrollTop from \"../components/ScrollTopButton\";\r\n\r\nexport default function Body (props) {\r\n return (\r\n \r\n
\r\n \r\n \r\n \r\n Apps for a better \r\n every day \r\n \r\n \r\n \r\n \r\n Kasheer \r\n \r\n \r\n \r\n \r\n About \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n // \r\n );\r\n}","import logo from './logo.svg';\nimport { ScrollingProvider } from 'react-scroll-section';\nimport { Header, Body } from './layout';\nimport './App.css';\n\nfunction App() {\n return (\n
\n \n \n \n \n
\n );\n}\n\nexport default App;\n","const reportWebVitals = onPerfEntry => {\n if (onPerfEntry && onPerfEntry instanceof Function) {\n import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {\n getCLS(onPerfEntry);\n getFID(onPerfEntry);\n getFCP(onPerfEntry);\n getLCP(onPerfEntry);\n getTTFB(onPerfEntry);\n });\n }\n};\n\nexport default reportWebVitals;\n","import React from 'react';\nimport ReactDOM from 'react-dom';\nimport { BrowserRouter as Router } from \"react-router-dom\";\nimport './index.css';\nimport App from './App';\nimport reportWebVitals from './reportWebVitals';\n\nReactDOM.render(\n
\n \n \n \n ,\n document.getElementById('root')\n);\n\n// If you want to start measuring performance in your app, pass a function\n// to log results (for example: reportWebVitals(console.log))\n// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals\nreportWebVitals();\n"],"sourceRoot":""}