import React from "react"; import styled from "styled-components"; const StyledErrorView = styled.div` display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; height: 100%; img { filter: drop-shadow(2px 4px 6px black); } `; const StyledTitle = styled.h2` color: ${({ theme }) => theme.TEXT_DANGER}; `; const StyledInfo = styled.p` width: 60%; text-align: center; color: ${({ theme }) => theme.TEXT_NORMAL}; `; export const ErrorView = () => ( oops JSON Crack unable to handle this file! We apologize for the problem you encountered, we are doing our best as Open Source community to improve our service. JSON Crack is currently unable to handle such a huge file. );