소스 검색

fixed prettier on switch component

Torkel Ödegaard 7 년 전
부모
커밋
a803435b27
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  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(),
   };