@arcblock/result-html-pages
v2.10.63
Published
This package provide a function that generates html code for common error pages such as 404, 500, etc.
Downloads
5,085
Readme
result-html-pages
This package provide a function that generates html code for common error pages such as 404, 500, etc.
Usage
const { render } = require('@arcblock/result-html-pages');
// or import { render } from '@arcblock/result-html-pages'
render({ status: '404' }) // => 404 page
render({ status: '403' }) // => 403 page
render({ status: '500' }) // => 500 page
render({ status: 'error' }) // => error page
render({ status: 'maintenance' }) // => maintenance page
render({ status: 'comingSoon' }) // => comingSoon page
render({ status: 'info', title: 'Here is a info message' }) // => info page
render({ title: '...', description: '...', icon: '...' }) // => custom result page