p632-sp-2017/microservice-catalog-frontend

View on GitHub
src/main/app/src/component/Error.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react'

/**
 * Error Page
 */
const ErrorPage = () =>{
  return(
    <p>This is error Page</p>
  )
}

ErrorPage.displayName = 'ErrorPage';

export default ErrorPage;