Browse Source

fixed prettier on switch component

Torkel Ödegaard 7 years ago
parent
commit
a803435b27
1 changed files with 2 additions and 1 deletions
  1. 2 1
      packages/grafana-ui/src/components/Switch/Switch.tsx

+ 2 - 1
packages/grafana-ui/src/components/Switch/Switch.tsx

@@ -14,7 +14,8 @@ export interface Props {
 export interface State {
   id: any;
 }
- export class Switch extends PureComponent<Props, State> {
+
+export class Switch extends PureComponent<Props, State> {
   state = {
     id: _.uniqueId(),
   };