mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-03 20:19:07 +05:30
16 lines
323 B
React
16 lines
323 B
React
|
import React, { Component } from 'react';
|
||
|
|
||
|
import styles from './profile.scss';
|
||
|
|
||
|
export default class ProfilePage extends Component {
|
||
|
displayName = 'ProfilePage';
|
||
|
|
||
|
render() {
|
||
|
return (
|
||
|
<div className={styles.container}>
|
||
|
{this.props.children}
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
}
|