import { h } from 'preact' const fail = details => (

Error

{details.map(x => (

{x}

))}
Home | Report bug
) const loading = details => (
{details.map(x => (
{x}
))}
) export default ({ stage, details }) => ({ fail, loading })[stage](details)