Procházet zdrojové kódy

fixed prettier on switch component

Torkel Ödegaard před 7 roky
rodič
revize
a803435b27

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

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