mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
tech: ran pretttier on all typescript files
This commit is contained in:
@@ -1,7 +1,14 @@
|
||||
import coreModule from 'app/core/core_module';
|
||||
import coreModule from "app/core/core_module";
|
||||
|
||||
export function react2AngularDirective(name: string, component: any, options: any) {
|
||||
coreModule.directive(name, ['reactDirective', reactDirective => {
|
||||
return reactDirective(component, options);
|
||||
}]);
|
||||
export function react2AngularDirective(
|
||||
name: string,
|
||||
component: any,
|
||||
options: any
|
||||
) {
|
||||
coreModule.directive(name, [
|
||||
"reactDirective",
|
||||
reactDirective => {
|
||||
return reactDirective(component, options);
|
||||
}
|
||||
]);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user