Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove unused items to allow build with CI=true yarn build #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
remove unused items to allow build with CI=true yarn build
  • Loading branch information
agaengel committed Oct 22, 2020
commit 531a991f7b53b82248819047fac1cca504ec9cdf
9 changes: 1 addition & 8 deletions src/Components/CounterDemo.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,11 @@
import React, {useState} from 'react';
import React from 'react';
import Grid from "@material-ui/core/Grid";
import {useOvermind} from "../Others/OvermindHelper";
import Typography from "@material-ui/core/Typography";
import Button from "@material-ui/core/Button";
import { makeStyles } from '@material-ui/core/styles';
import {theme} from "../Others/Theme";

const useStyles = makeStyles((theme) => ({
//
}))

const CounterDemo = () => {
const {state, actions} = useOvermind()
const classes = useStyles();

return (
<Grid style={{padding: 48}} container direction='column' justify='center' alignItems='center'
Expand Down