Use eslint-config-react-app

This commit is contained in:
Michael Jackson
2019-10-20 21:55:56 -07:00
parent 6f880c6ea7
commit fe833797e8
7 changed files with 574 additions and 386 deletions

View File

@ -15,7 +15,7 @@ function getBasename(path) {
function ImageViewer({ path, uri }) {
return (
<div css={{ padding: 20, textAlign: 'center' }}>
<img title={getBasename(path)} src={uri} />
<img alt={getBasename(path)} src={uri} />
</div>
);
}