/** @jsx jsx */ import { jsx, Box, Flex } from "theme-ui" import { Container, Card, CardContent, Typography, CardActions, Button, makeStyles, AppBar, Tabs, Tab } from "@material-ui/core" import Dropzone from "../src/components/Dropzone" import { useState } from "react" import { TabPanel } from "../src/components/TabPanel" const useStyles = makeStyles({ card: { minWidth: 275 }, bullet: { display: "inline-block", margin: "0 2px", transform: "scale(0.8)" }, title: { fontSize: 14 }, pos: { marginBottom: 12 } }) const Index = () => { const classes = useStyles({}) const [value, setValue] = useState(0) const handleChange = (event, newValue) => { setValue(newValue) } return ( <> Sia View Node ) } export default Index