diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-05-22 20:35:40 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-22 20:35:40 +0900 |
commit | 07897df636ca3e732490d53fd2acf947738bf16e (patch) | |
tree | 75af476b86222cbb8a8546ace1f0ff606c24eeb3 /src/console/components/Console.tsx | |
parent | c1f64927b63d18048790abd3ba907083dbca3084 (diff) | |
parent | fc1cd234d5643fde0abbd529a374e330cb4ab4b6 (diff) |
Merge pull request #590 from ueokande/remove-unnecessary-semi
Remove unnecessary semi
Diffstat (limited to 'src/console/components/Console.tsx')
-rw-r--r-- | src/console/components/Console.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/console/components/Console.tsx b/src/console/components/Console.tsx index 68cc523..7da2f36 100644 --- a/src/console/components/Console.tsx +++ b/src/console/components/Console.tsx @@ -13,7 +13,7 @@ type StateProps = ReturnType<typeof mapStateToProps>; interface DispatchProps { dispatch: (action: any) => void, } -type Props = StateProps & DispatchProps +type Props = StateProps & DispatchProps; class Console extends React.Component<Props> { private input: React.RefObject<Input>; |