2023-06-27 17:20:58 +00:00
|
|
|
import { Box, Button, Text } from "@saleor/macaw-ui/next";
|
|
|
|
import Link from "next/link";
|
2023-02-22 11:23:04 +00:00
|
|
|
|
|
|
|
export const NoProvidersConfigured = () => (
|
2023-06-27 17:20:58 +00:00
|
|
|
<Box display={"flex"} gap={4} flexDirection={"column"}>
|
|
|
|
<Text as={"h1"} variant="heading">
|
2023-02-22 11:23:04 +00:00
|
|
|
No providers configured
|
2023-06-27 17:20:58 +00:00
|
|
|
</Text>
|
|
|
|
<Text as={"p"}>You need to configure Datadog to enable the app</Text>
|
|
|
|
<Link href={"/configuration/datadog"}>
|
|
|
|
<Button>Configure Datadog</Button>
|
|
|
|
</Link>
|
|
|
|
</Box>
|
2023-02-22 11:23:04 +00:00
|
|
|
);
|