webhook history table was added

This commit is contained in:
Vladimir Khvan 2023-03-28 14:35:11 +05:00
parent 13cc4f3f4e
commit e3bb0a9d38

View File

@ -3,6 +3,7 @@ import styled from "styled-components";
import HistoryHeader from "./sub-components/HistoryHeader";
import HistoryFilterHeader from "./sub-components/HistoryFilterHeader";
import WebhookHistoryTable from './sub-components/WebhookHistoryTable'
const WebhookWrapper = styled.div`
width: 100%;
@ -14,6 +15,7 @@ const WebhookHistory = () => {
<HistoryHeader />
<main>
<HistoryFilterHeader />
<WebhookHistoryTable />
</main>
</WebhookWrapper>
);