16 lines
454 B
JavaScript
16 lines
454 B
JavaScript
import {Row} from "antd";
|
|
import React from "react";
|
|
import ProfileMyComponent from "../../components/profile-my/profile-my.component";
|
|
import ProfileShopsContainer from "../../components/profile-shops/profile-shops.container";
|
|
|
|
export default function ProfilePage() {
|
|
return (
|
|
<div>
|
|
<Row gutter={[16, 16]}>
|
|
<ProfileMyComponent/>
|
|
<ProfileShopsContainer/>
|
|
</Row>
|
|
</div>
|
|
);
|
|
}
|