gab-social/app/javascript/gabsocial/pages/error_page.js

14 lines
172 B
JavaScript
Raw Normal View History

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