import { Flex, FlexProps, TextProps, Text } from "@chakra-ui/react"; import React from "react"; export function CenteredErrorFallback(props: { TextProps?: TextProps; FlexProps?: FlexProps }) { return ( Oops! Looks like something broke!
Please try again later!
); }