import React from 'react'; import { Button } from 'components/common/Button/Button'; import * as S from './ErrorPage.styled'; interface Props { status?: number; text?: string; btnText?: string; } const ErrorPage: React.FC = ({ status = 404, text = 'Page is not found', btnText = 'Go Back to Dashboard', }) => { return ( {status} {text} ); }; export default ErrorPage;