Skip to content

Commit

Permalink
GH-67 Fix no-unexpected-multiline warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jedster1111 committed Nov 29, 2019
1 parent 15488f5 commit 9c2bc00
Show file tree
Hide file tree
Showing 4 changed files with 10,949 additions and 90 deletions.
1 change: 0 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"eslint.workingDirectories": ["./packages/bananagram-frontend"],
"eslint.options": { "configFile": ".eslintrc.json" },
"eslint.validate": [
"javascript",
"javascriptreact",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@ interface GridSquareProps {
) => void;
}

const StyledGridSquare = styled.div<{
interface StyledGridSquareProps {
isSelected: boolean;
isPiece: boolean;
}>`
}

const StyledGridSquare = styled.div<StyledGridSquareProps>`
flex: 1;
display: flex;
Expand Down
Loading

0 comments on commit 9c2bc00

Please sign in to comment.