openreplay/frontend/app/components/Dashboard/components/AddCardModal/AddCardModal.tsx
2023-01-03 18:09:25 +01:00

20 lines
484 B
TypeScript

import Modal from 'App/components/Modal/Modal';
import React from 'react';
import MetricTypeList from '../MetricTypeList';
interface Props {
siteId: string;
dashboardId: string;
}
function AddCardModal(props: Props) {
return (
<>
<Modal.Header title="Add Card" />
<Modal.Content className="px-3 pb-6">
<MetricTypeList siteId={props.siteId} dashboardId={parseInt(props.dashboardId)} />
</Modal.Content>
</>
);
}
export default AddCardModal;