import WebhooksCreateView from "@saleor/webhooks/views/WebhooksCreate"; import React from "react"; import { Route, RouteComponentProps } from "react-router-dom"; import { webhookAddPath, webhookPath } from "./urls"; import WebhooksDetails from "./views/WebhooksDetails"; const WebhookDetails: React.FC> = ({ match }) => ( ); const WebhookCreate: React.FC> = ({ match }) => ( ); const Component = () => ( <> ); export default Component;