mirror of
https://github.com/prometheus/prometheus.git
synced 2026-05-28 04:02:21 -04:00
12 lines
280 B
TypeScript
12 lines
280 B
TypeScript
import { Stack } from "@mantine/core";
|
|
import { FC, ReactNode } from "react";
|
|
|
|
const InfoPageStack: FC<{ children: ReactNode }> = ({ children }) => {
|
|
return (
|
|
<Stack gap="lg" maw={1000} mx="auto" mt="xs">
|
|
{children}
|
|
</Stack>
|
|
);
|
|
};
|
|
|
|
export default InfoPageStack;
|