فهرست منبع

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(),
   };