import { Box, Center, Group, Stack } from '@mantine/core'; import { RiErrorWarningLine } from 'react-icons/ri'; import styled from 'styled-components'; import { Button, Text } from '@/renderer/components'; const Container = styled(Box)` background: var(--main-bg); `; export const ErrorFallback = ({ error, resetErrorBoundary }: any) => { return (
Something went wrong {error.message}
); };