diff options
author | Eug-VS <eug-vs@keemail.me> | 2020-01-15 23:22:43 +0300 |
---|---|---|
committer | Eug-VS <eug-vs@keemail.me> | 2020-01-15 23:22:43 +0300 |
commit | 893fa5981a3c831b4c7da6ee2aa131f829943a54 (patch) | |
tree | c74cf682b289304dfcd019e6641f6789dafbbc2a /src/pages/Profile/Profile.js | |
parent | 8d98180b4f6882dbbe6754bceb8ffb09f46f7e7d (diff) | |
download | chrono-cube-ui-893fa5981a3c831b4c7da6ee2aa131f829943a54.tar.gz |
style: fix all quote errors with new eslint config
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 => ({ |