14 lines
172 B
JavaScript
Raw Normal View History

2020-02-22 18:26:23 -05:00
export default class ErrorPage extends PureComponent {
render() {
const { children } = this.props;
2020-04-11 18:29:19 -04:00
// : todo :
2020-02-22 18:26:23 -05:00
return (
<div>
{children}
</div>
)
}
}