-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathoverview.tsx
44 lines (40 loc) · 1.02 KB
/
overview.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
* Copyright OpenSearch Contributors
* SPDX-License-Identifier: Apache-2.0
*/
import React, { useEffect } from 'react';
import {
EuiPage,
EuiPageBody,
EuiPageHeader,
EuiPageContent,
EuiText,
} from '@elastic/eui';
import { BREADCRUMBS } from '../../utils';
import { getCore } from '../../services';
/**
* The overview page. This contains a detailed description on what
* this plugin offers, and links to different resources (blogs, demos,
* documentation, etc.)
*
* This may be hidden for the initial release until we have sufficient content
* such that this page adds enough utility & user value.
*/
export function Overview() {
useEffect(() => {
getCore().chrome.setBreadcrumbs([
BREADCRUMBS.FLOW_FRAMEWORK,
BREADCRUMBS.OVERVIEW,
]);
});
return (
<EuiPage>
<EuiPageBody>
<EuiPageHeader pageTitle="Overview" />
<EuiPageContent>
<EuiText>TODO: Put overview details here...</EuiText>
</EuiPageContent>
</EuiPageBody>
</EuiPage>
);
}