fix(pagerduty): requested changes

This commit is contained in:
Remi
2021-02-11 19:23:57 +01:00
parent e44f90a5c0
commit 562917f110
9 changed files with 105 additions and 20 deletions
+9 -2
View File
@@ -13,7 +13,14 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import React from 'react';
import { createDevApp } from '@backstage/dev-utils';
import { plugin } from '../src/plugin';
import { splunkOnCallPlugin, SplunkOnCallPage } from '../src/plugin';
createDevApp().registerPlugin(plugin).render();
createDevApp()
.registerPlugin(splunkOnCallPlugin)
.addPage({
title: 'Splunk On-Call',
element: <SplunkOnCallPage />,
})
.render();