diff options
author | Eugene <eug-vs@keemail.me> | 2020-01-16 19:32:18 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-16 19:32:18 +0000 |
commit | 22918f53bdee82e0a34bb2a09059ccd3ffca0dc6 (patch) | |
tree | 52779dc13ae2b8714b108c6cd23951de36344fbd /src/components | |
parent | 8a005dd6d506faf4fd1d5766a3f51d94300f4fd8 (diff) | |
parent | 6ceb6dbb3a7a43394a2318c8c9eda44e8c7a3ccb (diff) | |
download | chrono-cube-ui-22918f53bdee82e0a34bb2a09059ccd3ffca0dc6.tar.gz |
Merge pull request #40 from Eug-VS/eslint
feat: configure ESlint
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/ContentSection/ContentSection.js | 2 | ||||
-rw-r--r-- | src/components/Header/Header.js | 4 | ||||
-rw-r--r-- | src/components/Loading/Loading.js | 4 | ||||
-rw-r--r-- | src/components/SolutionCard/SolutionCard.js | 6 | ||||
-rw-r--r-- | src/components/Window/Window.js | 4 | ||||
-rw-r--r-- | src/components/Window/WindowSurface/WindowSurface.js | 2 |
6 files changed, 11 insertions, 11 deletions
diff --git a/src/components/ContentSection/ContentSection.js b/src/components/ContentSection/ContentSection.js index 99e76aa..5108ce0 100644 --- a/src/components/ContentSection/ContentSection.js +++ b/src/components/ContentSection/ContentSection.js @@ -4,7 +4,7 @@ import { Typography, Divider, makeStyles -} from "@material-ui/core"; +} from '@material-ui/core'; const useStyles = makeStyles(theme => ({ diff --git a/src/components/Header/Header.js b/src/components/Header/Header.js index d6294db..1595141 100644 --- a/src/components/Header/Header.js +++ b/src/components/Header/Header.js @@ -1,4 +1,4 @@ -import React from "react"; +import React from 'react'; import { AppBar, @@ -6,7 +6,7 @@ import { Tab, Typography, Toolbar, -} from "@material-ui/core"; +} from '@material-ui/core'; import { makeStyles } from '@material-ui/core/styles'; import TimerIcon from '@material-ui/icons/Timer'; diff --git a/src/components/Loading/Loading.js b/src/components/Loading/Loading.js index 632142b..e8b9701 100644 --- a/src/components/Loading/Loading.js +++ b/src/components/Loading/Loading.js @@ -3,9 +3,9 @@ import React from 'react'; import { Card, CardHeader, -} from "@material-ui/core"; +} from '@material-ui/core'; -import { makeStyles } from "@material-ui/core/styles"; +import { makeStyles } from '@material-ui/core/styles'; import CircularProgress from '@material-ui/core/CircularProgress'; diff --git a/src/components/SolutionCard/SolutionCard.js b/src/components/SolutionCard/SolutionCard.js index 1fff873..8252347 100644 --- a/src/components/SolutionCard/SolutionCard.js +++ b/src/components/SolutionCard/SolutionCard.js @@ -10,13 +10,13 @@ import { Grid, Menu, MenuItem, -} from "@material-ui/core"; +} from '@material-ui/core'; -import { makeStyles } from "@material-ui/core/styles"; +import { makeStyles } from '@material-ui/core/styles'; import TimerIcon from '@material-ui/icons/Timer'; import MoreVertIcon from '@material-ui/icons/MoreVert'; -import { del } from "../../requests"; +import { del } from '../../requests'; const DATE_FORMAT = { diff --git a/src/components/Window/Window.js b/src/components/Window/Window.js index 63bd6ba..0ba2454 100644 --- a/src/components/Window/Window.js +++ b/src/components/Window/Window.js @@ -1,8 +1,8 @@ import React from 'react'; -import { Typography, Divider, makeStyles } from "@material-ui/core"; +import { Typography, Divider, makeStyles } from '@material-ui/core'; -import WindowSurface from "./WindowSurface/WindowSurface"; +import WindowSurface from './WindowSurface/WindowSurface'; const useStyles = makeStyles(theme => ({ diff --git a/src/components/Window/WindowSurface/WindowSurface.js b/src/components/Window/WindowSurface/WindowSurface.js index c4e6b3d..26fea01 100644 --- a/src/components/Window/WindowSurface/WindowSurface.js +++ b/src/components/Window/WindowSurface/WindowSurface.js @@ -1,6 +1,6 @@ import React from 'react'; -import { Paper, makeStyles } from "@material-ui/core"; +import { Paper, makeStyles } from '@material-ui/core'; const useStyles = makeStyles(theme => ({ |