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/pages/Profile/Profile.js | |
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/pages/Profile/Profile.js')
-rw-r--r-- | src/pages/Profile/Profile.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/pages/Profile/Profile.js b/src/pages/Profile/Profile.js index 861e58e..783d497 100644 --- a/src/pages/Profile/Profile.js +++ b/src/pages/Profile/Profile.js @@ -1,17 +1,17 @@ import React, { useState, useEffect } from 'react'; -import Window from "../../components/Window/Window"; +import Window from '../../components/Window/Window'; import { Button, makeStyles, -} from "@material-ui/core"; +} from '@material-ui/core'; -import Registration from "./Registration/Registration"; -import ContentSection from "../../components/ContentSection/ContentSection"; -import SmartList from "../../components/SmartList/SmartList"; +import Registration from './Registration/Registration'; +import ContentSection from '../../components/ContentSection/ContentSection'; +import SmartList from '../../components/SmartList/SmartList'; -import { get } from "../../requests"; -import SolutionCard from "../../components/SolutionCard/SolutionCard"; +import { get } from '../../requests'; +import SolutionCard from '../../components/SolutionCard/SolutionCard'; const useStyles = makeStyles(theme => ({ |