update: webhooks

This commit is contained in:
anik-ghosh-au7
2022-07-14 23:41:44 +05:30
parent f2886e6da8
commit 8e655daa71
7 changed files with 460 additions and 28 deletions

View File

@@ -0,0 +1,18 @@
import React from 'react';
import { Box, Flex, Text } from '@chakra-ui/react';
import AddWebhookModal from '../components/AddWebhookModal';
const Webhooks = () => {
return (
<Box m="5" py="5" px="10" bg="white" rounded="md">
<Flex margin="2% 0" justifyContent="space-between" alignItems="center">
<Text fontSize="md" fontWeight="bold">
Webhooks
</Text>
<AddWebhookModal />
</Flex>
</Box>
);
};
export default Webhooks;