diff options
author | Eugene Sokolov <eug-vs@keemail.me> | 2020-04-18 21:17:50 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-18 21:17:50 +0300 |
commit | 1d1df03b64d31a9606e494d086eb7ae3bee92681 (patch) | |
tree | 5bea19d0bc6afc0440f71fb8df962e29fbb568e2 /src/lib/Markdown/CodeBlock.tsx | |
parent | ad42e742c04c8302c2bcaf67c07ef215bba04f3b (diff) | |
parent | a31244374f5609e89d8ff22e4111ab04d94886a2 (diff) | |
download | react-benzin-1d1df03b64d31a9606e494d086eb7ae3bee92681.tar.gz |
Merge pull request #12 from eug-vs/codestyle
Configure ESlint properly
Diffstat (limited to 'src/lib/Markdown/CodeBlock.tsx')
-rw-r--r-- | src/lib/Markdown/CodeBlock.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/Markdown/CodeBlock.tsx b/src/lib/Markdown/CodeBlock.tsx index 5b8edec..394458e 100644 --- a/src/lib/Markdown/CodeBlock.tsx +++ b/src/lib/Markdown/CodeBlock.tsx @@ -1,8 +1,8 @@ import React from 'react'; -import { ParserPropTypes } from './types'; import { Paper } from '@material-ui/core'; import { makeStyles } from '@material-ui/core/styles'; +import { ParserPropTypes } from './types'; const useStyles = makeStyles(theme => ({ root: { @@ -10,7 +10,7 @@ const useStyles = makeStyles(theme => ({ padding: theme.spacing(1), overflowX: 'auto', fontFamily: 'Monospace', - scrollbarColor: 'auto' + scrollbarColor: 'auto', }, })); @@ -21,7 +21,7 @@ const CodeBlock: React.FC<ParserPropTypes> = ({ rawLines }) => { {rawLines.map(line => <pre>{line}</pre>)} </Paper> ); -} +}; export default CodeBlock; |