You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
975 B
29 lines
975 B
import React, { FC } from 'react';
|
|
import { MapStateToProps, connect } from 'react-redux';
|
|
import { NavModel } from '@grafana/data';
|
|
import Page from 'app/core/components/Page/Page';
|
|
import { StoreState } from 'app/types';
|
|
import { SnapshotListTable } from './components/SnapshotListTable';
|
|
import { GrafanaRouteComponentProps } from '../../core/navigation/types';
|
|
import { getNavModel } from 'app/core/selectors/navModel';
|
|
|
|
interface ConnectedProps {
|
|
navModel: NavModel;
|
|
}
|
|
interface Props extends ConnectedProps, GrafanaRouteComponentProps {}
|
|
|
|
export const SnapshotListPage: FC<Props> = ({ navModel, location }) => {
|
|
return (
|
|
<Page navModel={navModel}>
|
|
<Page.Contents>
|
|
<SnapshotListTable />
|
|
</Page.Contents>
|
|
</Page>
|
|
);
|
|
};
|
|
|
|
const mapStateToProps: MapStateToProps<ConnectedProps, {}, StoreState> = (state: StoreState) => ({
|
|
navModel: getNavModel(state.navIndex, 'snapshots'),
|
|
});
|
|
|
|
export default connect(mapStateToProps)(SnapshotListPage);
|
|
|