2018-08-01 16:06:43 +02:00
|
|
|
// @flow
|
|
|
|
import React from 'react';
|
|
|
|
import Page from 'component/page';
|
2018-08-30 07:11:05 +02:00
|
|
|
import UserHistory from 'component/userHistory';
|
2018-08-01 16:06:43 +02:00
|
|
|
|
2019-01-19 19:54:06 +01:00
|
|
|
type Props = {};
|
|
|
|
|
|
|
|
class UserHistoryPage extends React.PureComponent<Props> {
|
2018-08-01 16:06:43 +02:00
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<Page>
|
2018-08-30 07:11:05 +02:00
|
|
|
<UserHistory />
|
2018-08-01 16:06:43 +02:00
|
|
|
</Page>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
export default UserHistoryPage;
|