Fix linter errors

This commit is contained in:
Thomas Nordquist
2019-04-04 10:54:18 +02:00
parent d175195dd5
commit c20c075bcf
19 changed files with 31 additions and 34 deletions

View File

@@ -1,6 +1,6 @@
import * as React from 'react'
import { Theme, withStyles } from '@material-ui/core'
import Key from './Key';
import Key from './Key'
interface State {
message?: string
@@ -8,8 +8,6 @@ interface State {
location: string
}
class Demo extends React.Component<{classes: any}, State> {
private timer: any
constructor(props: any) {

View File

@@ -1,6 +1,6 @@
import * as React from 'react'
import ShowText from './ShowText'
import Mouse from './Mouse';
import Mouse from './Mouse'
(window as any).demo = {}
@@ -11,4 +11,4 @@ export default function render(props: any) {
<Mouse />
</span>
)
}
}