kibana/x-pack/plugins/searchprofiler/public/index.ts
CJ Cenizal ebbd2db041
Conform Search Profiler application organization to other ES UI plugins (#82085) (#82365)
* Add testing steps to README.
* Update Search Profiler application organization to conform to organization of other ES UI plugins.
* Organize styles to live alongside the components they decorate.
2020-11-02 14:01:28 -08:00

13 lines
386 B
TypeScript

/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
import './index.scss';
import { SearchProfilerUIPlugin } from './plugin';
export function plugin() {
return new SearchProfilerUIPlugin();
}