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

14 lines
189 B
JavaScript
Raw Normal View History

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