import React from 'react'; import { NgIf } from './'; import "./error.scss"; export const Error = (props) => { return (
{props.err.message || "Oups something went wrong :/"} {JSON.stringify(props.err.trace)}
); }