kibana/x-pack/plugins/security_solution/public/detections/components/detection_engine_header_page/index.tsx
2021-11-10 18:34:50 -07:00

19 lines
643 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
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
import React from 'react';
import { HeaderPage, HeaderPageProps } from '../../../common/components/header_page';
const DetectionEngineHeaderPageComponent: React.FC<HeaderPageProps> = (props) => (
<HeaderPage {...props} />
);
export const DetectionEngineHeaderPage = React.memo(DetectionEngineHeaderPageComponent);
DetectionEngineHeaderPage.displayName = 'DetectionEngineHeaderPage';