openreplay/frontend/app/components/Dashboard/components/AddCardModal/AddCardModal.tsx
2023-06-27 18:05:08 +02:00

20 lines
495 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 as string)} />
</Modal.Content>
</>
);
}
export default AddCardModal;