import React, { Component } from "react"; import "../assets/stylesheets/error.scss"; export default class Error extends Component { status = this.props.err.item.status; statusText = this.props.err.item.statusText; message = this.props.err.item.message; render() { return (
background
background

{this.status}: {this.statusText}

If you believe this is unintentional, please contact a site developer!

); } }